From e366876b9b06fabb172b9f6aeb9cbf4aa7150c70 Mon Sep 17 00:00:00 2001 From: usmannasir <01-134132-158@student.bahria.edu.pk> Date: Thu, 2 Nov 2017 02:09:47 +0500 Subject: [PATCH] Firewall: Add Rules by IP, Bug Fixes: SSL, Error Logs, Remote Transfer --- api/urls.py | 3 + api/views.py | 52 ++- backup/static/backup/backup.js | 2 + backup/views.py | 111 +++-- firewall/models.py | 1 + firewall/static/firewall/firewall.js | 4 +- firewall/templates/firewall/firewall.html | 22 +- firewall/views.py | 10 +- install/email-configs/dovecot.conf | 4 +- install/firewallUtilities.py | 16 +- install/install.py | 140 +++--- install/installCyberPanel.py | 55 ++- locale/br/LC_MESSAGES/django.mo | Bin 30458 -> 30424 bytes locale/br/LC_MESSAGES/django.po | 322 +++++++------ locale/bs/LC_MESSAGES/django.mo | Bin 30480 -> 30446 bytes locale/bs/LC_MESSAGES/django.po | 322 +++++++------ locale/cn/LC_MESSAGES/django.mo | Bin 38779 -> 38744 bytes locale/cn/LC_MESSAGES/django.po | 254 ++++++----- locale/ja/LC_MESSAGES/django.mo | Bin 46266 -> 48363 bytes locale/ja/LC_MESSAGES/django.po | 430 +++++++++--------- locale/pt/LC_MESSAGES/django.mo | Bin 39566 -> 39530 bytes locale/pt/LC_MESSAGES/django.po | 322 +++++++------ manageSSL/views.py | 5 +- plogical/backupUtilities.py | 6 +- plogical/firewallUtilities.py | 19 +- plogical/remoteBackup.py | 191 +------- plogical/virtualHostUtilities.py | 4 +- .../websiteFunctions/websiteFunctions.js | 119 ++++- .../templates/websiteFunctions/website.html | 29 +- websiteFunctions/urls.py | 1 + websiteFunctions/views.py | 40 ++ 31 files changed, 1353 insertions(+), 1131 deletions(-) diff --git a/api/urls.py b/api/urls.py index 1c865fd72..52c9485ed 100644 --- a/api/urls.py +++ b/api/urls.py @@ -19,4 +19,7 @@ urlpatterns = [ url(r'^cancelRemoteTransfer', views.cancelRemoteTransfer, name='cancelRemoteTransfer'), + + url(r'^cyberPanelVersion', views.cyberPanelVersion, name='cyberPanelVersion'), + ] \ No newline at end of file diff --git a/api/views.py b/api/views.py index 4f64c00cf..2bb979083 100644 --- a/api/views.py +++ b/api/views.py @@ -15,11 +15,12 @@ from databases.models import Databases from baseTemplate.views import renderBase from random import randint import plogical.remoteBackup as rBackup -from websiteFunctions.models import Websites +from websiteFunctions.models import Websites,ChildDomains import os import signal from plogical.CyberCPLogFileWriter import CyberCPLogFileWriter as logging from shutil import rmtree +from baseTemplate.models import version # Create your views here. @@ -103,7 +104,7 @@ def createWebsite(request): return HttpResponse(json_data) if virtualHostUtilities.createDirectoryForVirtualHost(domain, adminEmail, phpSelection) != 1: - numberOfWebsites = Websites.objects.count() + numberOfWebsites = Websites.objects.count()+ChildDomains.objects.count() virtualHostUtilities.deleteVirtualHostConfigurations(domain, numberOfWebsites) data_ret = {"existsStatus": 1, 'createWebSiteStatus': 0, 'error_message': "Can not create configurations, see CyberCP main log file."} @@ -111,7 +112,7 @@ def createWebsite(request): return HttpResponse(json_data) if virtualHostUtilities.createConfigInMainVirtualHostFile(domain) != 1: - numberOfWebsites = Websites.objects.count() + numberOfWebsites = Websites.objects.count()+ChildDomains.objects.count() virtualHostUtilities.deleteVirtualHostConfigurations(domain, numberOfWebsites) data_ret = {"existsStatus": 1, 'createWebSiteStatus': 0, 'error_message': "Can not create configurations, see CyberCP main log file."} @@ -136,7 +137,7 @@ def createWebsite(request): return HttpResponse(json_data) except BaseException, msg: - numberOfWebsites = Websites.objects.count() + numberOfWebsites = Websites.objects.count()+ChildDomains.objects.count() virtualHostUtilities.deleteVirtualHostConfigurations(domain, numberOfWebsites) data_ret = {'createWebSiteStatus': 0, 'error_message': str(msg), "existsStatus": 0} json_data = json.dumps(data_ret) @@ -356,6 +357,7 @@ def fetchSSHkey(request): def remoteTransfer(request): try: if request.method == "POST": + data = json.loads(request.body) username = data['username'] password = data['password'] @@ -368,15 +370,11 @@ def remoteTransfer(request): transferRequest = rBackup.remoteBackup.remoteTransfer(ipAddress, dir,accountsToTransfer) if transferRequest[0] == 1: - pass + return HttpResponse(json.dumps({"transferStatus": 1, "dir": dir})) else: data_ret = {'transferStatus': 0, 'error_message': transferRequest[1]} json_data = json.dumps(data_ret) return HttpResponse(json_data) - - return HttpResponse(json.dumps({"transferStatus": 1, "dir":dir})) - - else: data_ret = {'transferStatus': 0, 'error_message': "Invalid Credentials"} json_data = json.dumps(data_ret) @@ -504,3 +502,39 @@ def cancelRemoteTransfer(request): json_data = json.dumps(data) return HttpResponse(json_data) + +def cyberPanelVersion(request): + try: + if request.method == 'POST': + + data = json.loads(request.body) + + adminUser = data['username'] + adminPass = data['password'] + + + admin = Administrator.objects.get(userName=adminUser) + + if hashPassword.check_password(admin.password, adminPass): + + Version = version.objects.get(pk=1) + + data_ret = {"getVersion": 1, + 'error_message': "Could not authorize access to API", + 'currentVersion':Version.currentVersion, + 'build':Version.build} + + json_data = json.dumps(data_ret) + return HttpResponse(json_data) + else: + data_ret = {"getVersion": 0, + 'error_message': "Could not authorize access to API"} + json_data = json.dumps(data_ret) + return HttpResponse(json_data) + + except BaseException, msg: + data_ret = {"getVersion": 0, + 'error_message': "Could not authorize access to API"} + json_data = json.dumps(data_ret) + return HttpResponse(json_data) + diff --git a/backup/static/backup/backup.js b/backup/static/backup/backup.js index ae8c7cef4..cf81eb4bd 100644 --- a/backup/static/backup/backup.js +++ b/backup/static/backup/backup.js @@ -1216,6 +1216,8 @@ app.controller('remoteBackupControl', function($scope, $http, $timeout) { return; } + // disable fetch accounts button + $scope.fetchAccountsBtn = true; $scope.backupLoading = false; diff --git a/backup/views.py b/backup/views.py index c0d1ff2c3..6d14ed0f2 100644 --- a/backup/views.py +++ b/backup/views.py @@ -19,6 +19,7 @@ import subprocess import signal import plogical.remoteBackup as rBackup import requests +from baseTemplate.models import version def loadBackupHome(request): try: @@ -1053,6 +1054,44 @@ def submitRemoteBackups(request): ipAddress = data['ipAddress'] password = data['password'] + ## ask for remote version + + try: + finalData = json.dumps({'username': "admin","password": password}) + + url = "https://" + ipAddress + ":8090/api/cyberPanelVersion" + + r = requests.post(url, data=finalData, verify=False) + + data = json.loads(r.text) + + + if data['getVersion'] == 1: + + Version = version.objects.get(pk=1) + + if data['currentVersion'] == Version.currentVersion and data['build'] == Version.build: + pass + else: + json_data = data['data'] + data_ret = {'status': 0, 'error_message': "Your version does not match with version of remote server.", + "dir": "Null", } + data_ret = json.dumps(data_ret) + return HttpResponse(data_ret) + + else: + data_ret = {'status': 0, 'error_message': "Not able to fetch version of remote server. Error Message: "+data['error_message'], "dir": "Null"} + data_ret = json.dumps(data_ret) + return HttpResponse(data_ret) + except BaseException,msg: + data_ret = {'status': 0, + 'error_message': "Not able to fetch version of remote server. Error Message: " + str(msg), "dir": "Null"} + data_ret = json.dumps(data_ret) + return HttpResponse(data_ret) + + + ## setup ssh key + sshkey = rBackup.remoteBackup.getKey(ipAddress, password) if sshkey[0] == 1: @@ -1091,29 +1130,31 @@ def submitRemoteBackups(request): writeToFile.writelines("\n") writeToFile.close() - #ownIP = requests.get('https://api.ipify.org').text + try: + finalData = json.dumps({'username': "admin","password": password}) - finalData = json.dumps({'username': "admin","password": password}) + url = "https://" + ipAddress + ":8090/api/fetchAccountsFromRemoteServer" - url = "https://" + ipAddress + ":8090/api/fetchAccountsFromRemoteServer" + r = requests.post(url, data=finalData, verify=False) - r = requests.post(url, data=finalData, verify=False) - - data = json.loads(r.text) + data = json.loads(r.text) - if data['fetchStatus'] == 1: - json_data = data['data'] - data_ret = {'status': 1, 'error_message': "None", - "dir": "Null",'data':json_data} + if data['fetchStatus'] == 1: + json_data = data['data'] + data_ret = {'status': 1, 'error_message': "None", + "dir": "Null",'data':json_data} + data_ret = json.dumps(data_ret) + return HttpResponse(data_ret) + else: + data_ret = {'status': 0, 'error_message': "Not able to fetch accounts from remote server. Error Message: "+data['error_message'], "dir": "Null"} + data_ret = json.dumps(data_ret) + return HttpResponse(data_ret) + except BaseException,msg: + data_ret = {'status': 0, + 'error_message': "Not able to fetch accounts from remote server. Error Message: " + str(msg), "dir": "Null"} data_ret = json.dumps(data_ret) return HttpResponse(data_ret) - else: - data_ret = {'status': 0, 'error_message': "Not able to fetch accounts from remote server. Error Message: "+data['error_message'], "dir": "Null"} - data_ret = json.dumps(data_ret) - return HttpResponse(data_ret) - - else: return HttpResponse("This URL only accepts POST requests") @@ -1132,33 +1173,41 @@ def starRemoteTransfer(request): password = data['password'] accountsToTransfer = data['accountsToTransfer'] + try: + ownIP = requests.get('https://api.ipify.org').text - ownIP = requests.get('https://api.ipify.org').text + finalData = json.dumps({'username': "admin", "password": password,"ipAddress": ownIP,"accountsToTransfer":accountsToTransfer}) - finalData = json.dumps({'username': "admin", "password": password,"ipAddress": ownIP,"accountsToTransfer":accountsToTransfer}) + url = "https://" + ipAddress + ":8090/api/remoteTransfer" - url = "https://" + ipAddress + ":8090/api/remoteTransfer" + r = requests.post(url, data=finalData, verify=False) - r = requests.post(url, data=finalData, verify=False) - - data = json.loads(r.text) + data = json.loads(r.text) - if data['transferStatus'] == 1: + if data['transferStatus'] == 1: - ## create local directory that will host backups + ## create local directory that will host backups - localStoragePath = "/home/backup/transfer-" + str(data['dir']) + localStoragePath = "/home/backup/transfer-" + str(data['dir']) - if not os.path.exists(localStoragePath): - os.makedirs(localStoragePath) + if not os.path.exists(localStoragePath): + os.makedirs(localStoragePath) - final_json = json.dumps({'remoteTransferStatus': 1, 'error_message': "None","dir":data['dir']}) - return HttpResponse(final_json) - else: - final_json = json.dumps({'remoteTransferStatus': 0, 'error_message':"Can not initiate remote transfer. Error message: "+ data['error_message']}) + final_json = json.dumps({'remoteTransferStatus': 1, 'error_message': "None","dir":data['dir']}) + return HttpResponse(final_json) + else: + final_json = json.dumps({'remoteTransferStatus': 0, 'error_message':"Can not initiate remote transfer. Error message: "+ data['error_message']}) + return HttpResponse(final_json) + + except BaseException,msg: + final_json = json.dumps({'remoteTransferStatus': 0, + 'error_message': "Can not initiate remote transfer. Error message: " + + str(msg)}) return HttpResponse(final_json) + + except BaseException,msg: final_json = json.dumps({'remoteTransferStatus': 0, 'error_message': str(msg)}) return HttpResponse(final_json) diff --git a/firewall/models.py b/firewall/models.py index c2e5cb579..9ce57c2c9 100644 --- a/firewall/models.py +++ b/firewall/models.py @@ -7,3 +7,4 @@ class FirewallRules(models.Model): name = models.CharField(unique=True, max_length=32) # Field name made lowercase. proto = models.CharField(max_length=10) port = models.CharField(max_length=25) + ipAddress = models.CharField(max_length=30,default="0.0.0.0/0") diff --git a/firewall/static/firewall/firewall.js b/firewall/static/firewall/firewall.js index e0e7a71b6..fd35d3d32 100644 --- a/firewall/static/firewall/firewall.js +++ b/firewall/static/firewall/firewall.js @@ -54,6 +54,7 @@ app.controller('firewallController', function($scope,$http) { ruleName:ruleName, ruleProtocol:ruleProtocol, rulePort:rulePort, + ruleIP:$scope.ruleIP, }; var config = { @@ -165,7 +166,7 @@ app.controller('firewallController', function($scope,$http) { - $scope.deleteRule = function(id,proto,port){ + $scope.deleteRule = function(id,proto,port,ruleIP){ @@ -178,6 +179,7 @@ app.controller('firewallController', function($scope,$http) { id:id, proto:proto, port:port, + ruleIP:ruleIP, }; var config = { diff --git a/firewall/templates/firewall/firewall.html b/firewall/templates/firewall/firewall.html index 971ef4cee..87965465f 100644 --- a/firewall/templates/firewall/firewall.html +++ b/firewall/templates/firewall/firewall.html @@ -80,11 +80,11 @@
-
+
-
+
+
+ + + + + -
+
- -
@@ -127,6 +135,7 @@ {% trans "ID" %} {% trans "Name" %} {% trans "Protocol" %} + {% trans "IP Address" %} {% trans "Port" %} {% trans "Delete" %} @@ -136,8 +145,9 @@ + - + diff --git a/firewall/views.py b/firewall/views.py index da1ed1098..dcf2493fc 100644 --- a/firewall/views.py +++ b/firewall/views.py @@ -53,6 +53,7 @@ def getCurrentRules(request): 'name': items.name, 'proto': items.proto, 'port': items.port, + 'ipAddress':items.ipAddress, } if checker == 0: @@ -87,13 +88,13 @@ def addRule(request): ruleName = data['ruleName'] ruleProtocol = data['ruleProtocol'] rulePort = data['rulePort'] + ruleIP = data['ruleIP'] - FirewallUtilities.addRule(ruleProtocol,rulePort) + FirewallUtilities.addRule(ruleProtocol,rulePort,ruleIP) - newFWRule = FirewallRules(name=ruleName,proto=ruleProtocol,port=rulePort) + newFWRule = FirewallRules(name=ruleName,proto=ruleProtocol,port=rulePort,ipAddress=ruleIP) newFWRule.save() - final_dic = {'add_status': 1, 'error_message': "None"} final_json = json.dumps(final_dic) return HttpResponse(final_json) @@ -120,8 +121,9 @@ def deleteRule(request): ruleID = data['id'] ruleProtocol = data['proto'] rulePort = data['port'] + ruleIP = data['ruleIP'] - FirewallUtilities.deleteRule(ruleProtocol, rulePort) + FirewallUtilities.deleteRule(ruleProtocol, rulePort,ruleIP) delRule = FirewallRules.objects.get(id=ruleID) delRule.delete() diff --git a/install/email-configs/dovecot.conf b/install/email-configs/dovecot.conf index 9daea4898..e84a9be7c 100644 --- a/install/email-configs/dovecot.conf +++ b/install/email-configs/dovecot.conf @@ -2,8 +2,8 @@ protocols = imap pop3 log_timestamp = "%Y-%m-%d %H:%M:%S " mail_location = maildir:/home/vmail/%d/%n/Maildir -ssl_cert = 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 (OmkD^ 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 M3-s;vM}7?aKjtWfW&i*H diff --git a/locale/br/LC_MESSAGES/django.po b/locale/br/LC_MESSAGES/django.po index b8b3e1399..91b3667c3 100644 --- a/locale/br/LC_MESSAGES/django.po +++ b/locale/br/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-10-29 20:47+0500\n" +"POT-Creation-Date: 2017-11-02 02:08+0500\n" "PO-Revision-Date: 2017-10-24 22:23+0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -115,7 +115,7 @@ msgstr "Откажи Архив" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: dns/templates/dns/addDeleteDNSRecords.html:129 -#: firewall/templates/firewall/firewall.html:127 +#: firewall/templates/firewall/firewall.html:135 #: ftp/templates/ftp/listFTPAccounts.html:87 #: managePHP/templates/managePHP/installExtensions.html:61 msgid "ID" @@ -138,9 +138,9 @@ msgstr "Размер" #: 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/firewall.html:140 #: firewall/templates/firewall/secureSSH.html:122 -#: websiteFunctions/templates/websiteFunctions/website.html:424 +#: websiteFunctions/templates/websiteFunctions/website.html:451 msgid "Delete" msgstr "Изтрий" @@ -167,6 +167,7 @@ msgstr "От тази страница може да настройте дест #: dns/templates/dns/addDeleteDNSRecords.html:60 #: dns/templates/dns/createNameServer.html:48 #: dns/templates/dns/createNameServer.html:65 +#: firewall/templates/firewall/firewall.html:138 msgid "IP Address" msgstr "IP Адрес" @@ -178,7 +179,7 @@ msgstr "IP Адрес" #: mailServer/templates/mailServer/changeEmailPassword.html:52 #: mailServer/templates/mailServer/createEmailAccount.html:51 #: userManagment/templates/userManagment/createUser.html:123 -#: userManagment/templates/userManagment/modifyUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:106 msgid "Password" msgstr "Парола" @@ -223,15 +224,15 @@ msgstr "Дестинацията е добавена" #: mailServer/templates/mailServer/deleteEmailAccount.html:79 #: manageSSL/templates/manageSSL/manageSSL.html:60 #: userManagment/templates/userManagment/createUser.html:162 -#: userManagment/templates/userManagment/modifyUser.html:139 +#: userManagment/templates/userManagment/modifyUser.html:138 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 #: websiteFunctions/templates/websiteFunctions/website.html:157 -#: websiteFunctions/templates/websiteFunctions/website.html:336 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -#: websiteFunctions/templates/websiteFunctions/website.html:508 -#: websiteFunctions/templates/websiteFunctions/website.html:563 -#: websiteFunctions/templates/websiteFunctions/website.html:618 -#: websiteFunctions/templates/websiteFunctions/website.html:765 +#: websiteFunctions/templates/websiteFunctions/website.html:363 +#: websiteFunctions/templates/websiteFunctions/website.html:405 +#: websiteFunctions/templates/websiteFunctions/website.html:535 +#: websiteFunctions/templates/websiteFunctions/website.html:590 +#: websiteFunctions/templates/websiteFunctions/website.html:645 +#: websiteFunctions/templates/websiteFunctions/website.html:792 msgid "Could not connect to server. Please refresh this page." msgstr "" @@ -294,11 +295,13 @@ msgstr "" #: 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/homePage.html:268 +#: baseTemplate/templates/baseTemplate/homePage.html:271 +#: baseTemplate/templates/baseTemplate/homePage.html:463 +#: baseTemplate/templates/baseTemplate/homePage.html:466 #: baseTemplate/templates/baseTemplate/index.html:554 #: baseTemplate/templates/baseTemplate/index.html:556 -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Back up" msgstr "Архив" @@ -364,7 +367,7 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:296 #, fuzzy #| msgid "Cancel Backup" msgid "Cancel" @@ -404,9 +407,9 @@ msgid "Website" msgstr "Страница" #: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:331 -#: baseTemplate/templates/baseTemplate/index.html:625 -#: baseTemplate/templates/baseTemplate/index.html:627 +#: baseTemplate/templates/baseTemplate/homePage.html:333 +#: baseTemplate/templates/baseTemplate/index.html:626 +#: baseTemplate/templates/baseTemplate/index.html:628 #: managePHP/templates/managePHP/installExtensions.html:62 msgid "PHP" msgstr "PHP" @@ -452,7 +455,7 @@ msgstr "Избери Архив" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 -#: firewall/templates/firewall/firewall.html:156 +#: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:212 msgid "Error message:" msgstr "Съобщение за Грешка" @@ -508,24 +511,28 @@ msgstr "Обработвани заявки" msgid "Total Requests" msgstr "Всички Заявки" -#: baseTemplate/templates/baseTemplate/homePage.html:173 +#: baseTemplate/templates/baseTemplate/homePage.html:175 +#: baseTemplate/templates/baseTemplate/homePage.html:389 #: userManagment/templates/userManagment/index.html:13 msgid "User Functions" msgstr "Функции на Потребителите" -#: baseTemplate/templates/baseTemplate/homePage.html:176 +#: baseTemplate/templates/baseTemplate/homePage.html:178 +#: baseTemplate/templates/baseTemplate/homePage.html:392 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:188 +#: baseTemplate/templates/baseTemplate/homePage.html:402 #: websiteFunctions/templates/websiteFunctions/index.html:13 msgid "Website Functions" msgstr "Функции на Страниците" -#: baseTemplate/templates/baseTemplate/homePage.html:189 +#: baseTemplate/templates/baseTemplate/homePage.html:191 +#: baseTemplate/templates/baseTemplate/homePage.html:405 #: baseTemplate/templates/baseTemplate/index.html:360 #: baseTemplate/templates/baseTemplate/index.html:444 #: baseTemplate/templates/baseTemplate/index.html:445 @@ -534,11 +541,11 @@ msgstr "Функции на Страниците" msgid "Websites" msgstr "Страница" -#: baseTemplate/templates/baseTemplate/homePage.html:199 +#: baseTemplate/templates/baseTemplate/homePage.html:201 msgid "Add/Modify Packages" msgstr "Добави/Промени Пакет" -#: baseTemplate/templates/baseTemplate/homePage.html:202 +#: baseTemplate/templates/baseTemplate/homePage.html:204 #: baseTemplate/templates/baseTemplate/index.html:366 #: baseTemplate/templates/baseTemplate/index.html:461 #: baseTemplate/templates/baseTemplate/index.html:463 @@ -546,12 +553,14 @@ msgstr "Добави/Промени Пакет" msgid "Packages" msgstr "Пакети" -#: baseTemplate/templates/baseTemplate/homePage.html:223 +#: baseTemplate/templates/baseTemplate/homePage.html:225 +#: baseTemplate/templates/baseTemplate/homePage.html:415 #: databases/templates/databases/index.html:12 msgid "Database Functions" msgstr "Функции на Бази от Данни" -#: baseTemplate/templates/baseTemplate/homePage.html:226 +#: baseTemplate/templates/baseTemplate/homePage.html:228 +#: baseTemplate/templates/baseTemplate/homePage.html:418 #: baseTemplate/templates/baseTemplate/index.html:477 #: baseTemplate/templates/baseTemplate/index.html:478 #: baseTemplate/templates/baseTemplate/index.html:479 @@ -561,23 +570,27 @@ msgstr "Функции на Бази от Данни" msgid "Databases" msgstr "База от Данни" -#: baseTemplate/templates/baseTemplate/homePage.html:235 +#: baseTemplate/templates/baseTemplate/homePage.html:237 +#: baseTemplate/templates/baseTemplate/homePage.html:438 msgid "Control DNS" msgstr "Контрол на DNS" -#: baseTemplate/templates/baseTemplate/homePage.html:238 +#: baseTemplate/templates/baseTemplate/homePage.html:240 +#: baseTemplate/templates/baseTemplate/homePage.html:441 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:250 +#: baseTemplate/templates/baseTemplate/homePage.html:451 #: ftp/templates/ftp/index.html:12 msgid "FTP Functions" msgstr "FTP Функции" -#: baseTemplate/templates/baseTemplate/homePage.html:251 +#: baseTemplate/templates/baseTemplate/homePage.html:253 +#: baseTemplate/templates/baseTemplate/homePage.html:454 #: baseTemplate/templates/baseTemplate/index.html:378 #: baseTemplate/templates/baseTemplate/index.html:536 #: baseTemplate/templates/baseTemplate/index.html:538 @@ -585,43 +598,45 @@ msgstr "FTP Функции" msgid "FTP" msgstr "FTP" -#: baseTemplate/templates/baseTemplate/homePage.html:278 -#: baseTemplate/templates/baseTemplate/homePage.html:281 +#: baseTemplate/templates/baseTemplate/homePage.html:280 +#: baseTemplate/templates/baseTemplate/homePage.html:283 +#: baseTemplate/templates/baseTemplate/homePage.html:483 +#: baseTemplate/templates/baseTemplate/homePage.html:486 #: packages/templates/packages/createPackage.html:75 #: packages/templates/packages/modifyPackage.html:80 msgid "Emails" msgstr "Emails" -#: baseTemplate/templates/baseTemplate/homePage.html:291 -#: baseTemplate/templates/baseTemplate/homePage.html:294 +#: baseTemplate/templates/baseTemplate/homePage.html:293 +#: baseTemplate/templates/baseTemplate/homePage.html:296 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:317 +#: baseTemplate/templates/baseTemplate/homePage.html:320 +#: baseTemplate/templates/baseTemplate/index.html:607 +#: baseTemplate/templates/baseTemplate/index.html:609 +#: baseTemplate/templates/baseTemplate/index.html:642 #: serverStatus/templates/serverStatus/index.html:13 msgid "Server Status" msgstr "Сървър Статус" -#: baseTemplate/templates/baseTemplate/homePage.html:328 +#: baseTemplate/templates/baseTemplate/homePage.html:330 msgid "PHP Configurations" msgstr "PHP Конфигурация" -#: baseTemplate/templates/baseTemplate/homePage.html:340 -#: baseTemplate/templates/baseTemplate/homePage.html:343 -#: baseTemplate/templates/baseTemplate/index.html:643 +#: baseTemplate/templates/baseTemplate/homePage.html:342 +#: baseTemplate/templates/baseTemplate/homePage.html:345 +#: baseTemplate/templates/baseTemplate/index.html:644 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:365 +#: baseTemplate/templates/baseTemplate/homePage.html:368 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:662 msgid "Security" msgstr "Сигурност" @@ -689,8 +704,8 @@ msgid "Dashboard Quick Menu" msgstr "Бързо Меню" #: baseTemplate/templates/baseTemplate/index.html:384 -#: baseTemplate/templates/baseTemplate/index.html:590 -#: baseTemplate/templates/baseTemplate/index.html:592 +#: baseTemplate/templates/baseTemplate/index.html:591 +#: baseTemplate/templates/baseTemplate/index.html:593 msgid "Tuning" msgstr "Настройка" @@ -723,7 +738,7 @@ msgstr "Нов Потребител" #: userManagment/templates/userManagment/index.html:52 #: userManagment/templates/userManagment/index.html:54 #: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:120 +#: userManagment/templates/userManagment/modifyUser.html:119 msgid "Modify User" msgstr "Промени Потребител" @@ -903,8 +918,8 @@ msgstr "Webmail" #: 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:683 -#: websiteFunctions/templates/websiteFunctions/website.html:685 +#: websiteFunctions/templates/websiteFunctions/website.html:710 +#: websiteFunctions/templates/websiteFunctions/website.html:712 msgid "Create FTP Account" msgstr "Създай FTP Акаунт" @@ -913,8 +928,8 @@ msgstr "Създай FTP Акаунт" #: 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:695 -#: websiteFunctions/templates/websiteFunctions/website.html:697 +#: websiteFunctions/templates/websiteFunctions/website.html:722 +#: websiteFunctions/templates/websiteFunctions/website.html:724 msgid "Delete FTP Account" msgstr "Изтрий FTP Акаунт" @@ -929,78 +944,84 @@ msgstr "Преглед FTP Акаунти" msgid "Add/Delete Destination" msgstr "Добави/Премахни Дестинация" -#: baseTemplate/templates/baseTemplate/index.html:573 +#: baseTemplate/templates/baseTemplate/index.html:565 +#, fuzzy +#| msgid "Restore Back up" +msgid "Remote Back ups" +msgstr "Възстанови Архив" + #: baseTemplate/templates/baseTemplate/index.html:574 +#: baseTemplate/templates/baseTemplate/index.html:575 msgid "SSL" msgstr "SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 +#: baseTemplate/templates/baseTemplate/index.html:580 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:581 #: manageSSL/templates/manageSSL/index.html:40 msgid "Hostname SSL" msgstr "Hostname SSL" -#: baseTemplate/templates/baseTemplate/index.html:588 +#: baseTemplate/templates/baseTemplate/index.html:589 msgid "Server" msgstr "Сървър" -#: baseTemplate/templates/baseTemplate/index.html:593 +#: baseTemplate/templates/baseTemplate/index.html:594 msgid "NEW" msgstr "НОВ" -#: baseTemplate/templates/baseTemplate/index.html:598 +#: baseTemplate/templates/baseTemplate/index.html:599 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:600 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:615 #: serverStatus/templates/serverStatus/index.html:25 #: serverStatus/templates/serverStatus/index.html:27 msgid "LiteSpeed Status" msgstr "LiteSpeed Статус" -#: baseTemplate/templates/baseTemplate/index.html:615 +#: baseTemplate/templates/baseTemplate/index.html:616 #: serverStatus/templates/serverStatus/cybercpmainlogfile.html:15 #: serverStatus/templates/serverStatus/index.html:37 #: serverStatus/templates/serverStatus/index.html:39 msgid "CyberPanel Main Log File" msgstr "Главен CyberPanel Лог" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/installExtensions.html:13 msgid "Install PHP Extensions" msgstr "Инсталирай PHP Модул" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/index.html:24 #: managePHP/templates/managePHP/index.html:26 msgid "Install Extensions" msgstr "Инсталирай Модул" -#: baseTemplate/templates/baseTemplate/index.html:633 +#: baseTemplate/templates/baseTemplate/index.html:634 #: managePHP/templates/managePHP/index.html:36 #: managePHP/templates/managePHP/index.html:38 msgid "Edit PHP Configs" msgstr "Промени PHP Config" -#: baseTemplate/templates/baseTemplate/index.html:648 +#: baseTemplate/templates/baseTemplate/index.html:649 msgid "Access Log" msgstr "Access Лог" -#: baseTemplate/templates/baseTemplate/index.html:649 +#: baseTemplate/templates/baseTemplate/index.html:650 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1008,35 +1029,35 @@ msgstr "Access Лог" msgid "Error Logs" msgstr "Error Логове" -#: baseTemplate/templates/baseTemplate/index.html:650 +#: baseTemplate/templates/baseTemplate/index.html:651 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:651 msgid "Email Log" msgstr "Email Лог" -#: baseTemplate/templates/baseTemplate/index.html:651 +#: baseTemplate/templates/baseTemplate/index.html:652 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:667 msgid "Firewall Home" msgstr "Защитна Стена" -#: baseTemplate/templates/baseTemplate/index.html:666 +#: baseTemplate/templates/baseTemplate/index.html:667 #: firewall/templates/firewall/index.html:25 #: firewall/templates/firewall/index.html:27 msgid "Firewall" msgstr "Защитна Стена" -#: baseTemplate/templates/baseTemplate/index.html:667 +#: baseTemplate/templates/baseTemplate/index.html:668 #: firewall/templates/firewall/index.html:36 #: firewall/templates/firewall/index.html:38 #: firewall/templates/firewall/secureSSH.html:13 @@ -1178,7 +1199,7 @@ msgid "Cannot change password for " msgstr "" #: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:166 +#: firewall/templates/firewall/firewall.html:176 #: ftp/templates/ftp/listFTPAccounts.html:59 msgid "Could Not Connect to server. Please refresh this page" msgstr "" @@ -1212,7 +1233,7 @@ msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:53 #: dns/templates/dns/addDeleteDNSRecords.html:131 -#: firewall/templates/firewall/firewall.html:128 +#: firewall/templates/firewall/firewall.html:136 #: serverStatus/templates/serverStatus/litespeedStatus.html:40 msgid "Name" msgstr "Име" @@ -1230,7 +1251,7 @@ msgstr "Приоритет" #: dns/templates/dns/createDNSZone.html:27 #: dns/templates/dns/createNameServer.html:27 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 -#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:290 msgid "Domain Name" msgstr "Домейн Име" @@ -1243,7 +1264,7 @@ msgid "Text" msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:111 -#: firewall/templates/firewall/firewall.html:109 +#: firewall/templates/firewall/firewall.html:117 msgid "Add" msgstr "Добави" @@ -1424,15 +1445,15 @@ msgstr "Действието не е изпълнено, защото:" msgid "Action successful." msgstr "Действието е успешно изпълнено." -#: firewall/templates/firewall/firewall.html:129 +#: firewall/templates/firewall/firewall.html:137 msgid "Protocol" msgstr "Протокол" -#: firewall/templates/firewall/firewall.html:130 +#: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Порт" -#: firewall/templates/firewall/firewall.html:162 +#: firewall/templates/firewall/firewall.html:172 msgid "Rule successfully added." msgstr "Правилата са успешно добавени." @@ -1501,8 +1522,8 @@ msgstr "Добави Ключ" #: firewall/templates/firewall/secureSSH.html:158 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:527 -#: websiteFunctions/templates/websiteFunctions/website.html:587 +#: websiteFunctions/templates/websiteFunctions/website.html:554 +#: websiteFunctions/templates/websiteFunctions/website.html:614 msgid "Save" msgstr "Запази" @@ -1705,7 +1726,7 @@ msgstr "За Напреднали" #: tuning/templates/tuning/phpTuning.html:28 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:310 msgid "Select PHP" msgstr "Избери PHP" @@ -1799,7 +1820,7 @@ msgstr "Назад" #: managePHP/templates/managePHP/installExtensions.html:104 #: tuning/templates/tuning/phpTuning.html:114 -#: userManagment/templates/userManagment/modifyUser.html:144 +#: userManagment/templates/userManagment/modifyUser.html:143 msgid "Cannot fetch details. Error message:" msgstr "Детайлите не са извлечени, защото:" @@ -1885,7 +1906,7 @@ msgstr "Име на Пакет" #: packages/templates/packages/createPackage.html:35 #: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:223 +#: websiteFunctions/templates/websiteFunctions/website.html:250 #, fuzzy #| msgid "Domain Name" msgid "Domains" @@ -2184,7 +2205,7 @@ msgstr "Забрани" #: tuning/templates/tuning/liteSpeedTuning.html:74 #: tuning/templates/tuning/phpTuning.html:97 -#: userManagment/templates/userManagment/modifyUser.html:78 +#: userManagment/templates/userManagment/modifyUser.html:77 msgid "Currently:" msgstr "В момента" @@ -2302,18 +2323,18 @@ msgid "Account Type" msgstr "Вид на акаунт" #: userManagment/templates/userManagment/createUser.html:67 -#: userManagment/templates/userManagment/modifyUser.html:73 -msgid "Reseller" -msgstr "Resseler" +#: userManagment/templates/userManagment/modifyUser.html:72 +msgid "Admin" +msgstr "Admin" #: userManagment/templates/userManagment/createUser.html:68 #: userManagment/templates/userManagment/createUser.html:79 -#: userManagment/templates/userManagment/modifyUser.html:74 +#: userManagment/templates/userManagment/modifyUser.html:73 msgid "Normal User" msgstr "Нормален Потребител" #: userManagment/templates/userManagment/createUser.html:92 -#: userManagment/templates/userManagment/modifyUser.html:89 +#: userManagment/templates/userManagment/modifyUser.html:88 #: userManagment/templates/userManagment/userProfile.html:67 #: userManagment/templates/userManagment/userProfile.html:74 msgid "User Accounts Limit" @@ -2325,7 +2346,7 @@ msgid "Only Numbers" msgstr "Само Числа" #: userManagment/templates/userManagment/createUser.html:103 -#: userManagment/templates/userManagment/modifyUser.html:99 +#: userManagment/templates/userManagment/modifyUser.html:98 #: userManagment/templates/userManagment/userProfile.html:82 msgid "Websites Limit" msgstr "Лимити за страници" @@ -2350,7 +2371,7 @@ msgid "Create User" msgstr "Създай Потребител" #: userManagment/templates/userManagment/createUser.html:154 -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid "Account with username:" msgstr "Акаунт с Потребителско име:" @@ -2404,19 +2425,15 @@ msgstr "" msgid "Select Account" msgstr "Избери Акаунт" -#: userManagment/templates/userManagment/modifyUser.html:72 -msgid "Admin" -msgstr "Admin" - -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid " is successfully modified." msgstr "е успешно променен." -#: userManagment/templates/userManagment/modifyUser.html:135 +#: userManagment/templates/userManagment/modifyUser.html:134 msgid "Cannot modify user. Error message:" msgstr "" -#: userManagment/templates/userManagment/modifyUser.html:148 +#: userManagment/templates/userManagment/modifyUser.html:147 msgid "Details fetched." msgstr "Детайлите са изтеглени." @@ -2465,36 +2482,36 @@ msgid "Select Owner" msgstr "Избери Собственик" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:294 +#: websiteFunctions/templates/websiteFunctions/website.html:305 msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" msgstr "" "Невалиден домейн (Забележка: Не е необходимо да поставяте 'http' или 'https')" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:84 -#: websiteFunctions/templates/websiteFunctions/website.html:299 +#: websiteFunctions/templates/websiteFunctions/website.html:326 msgid "Additional Features" msgstr "Допълнителни функции" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:91 -#: websiteFunctions/templates/websiteFunctions/website.html:306 +#: websiteFunctions/templates/websiteFunctions/website.html:333 msgid "" "For SSL to work DNS of domain should point to server, otherwise self signed " "SSL will be issued, you can add your own SSL later." msgstr "" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:113 -#: websiteFunctions/templates/websiteFunctions/website.html:328 +#: websiteFunctions/templates/websiteFunctions/website.html:355 msgid "Cannot create website. Error message:" msgstr "Страницата не е създадена, защото:" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid "Website with domain" msgstr "Страница с домейн" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid " is Successfully Created" msgstr "е Успешно Създаден" @@ -2630,166 +2647,171 @@ msgid "" msgstr "" #: websiteFunctions/templates/websiteFunctions/website.html:173 +#: websiteFunctions/templates/websiteFunctions/website.html:212 msgid "Next" msgstr "Следваща" #: websiteFunctions/templates/websiteFunctions/website.html:174 +#: websiteFunctions/templates/websiteFunctions/website.html:213 msgid "Previous" msgstr "Минала" -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:232 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +#: websiteFunctions/templates/websiteFunctions/website.html:259 #, fuzzy #| msgid "Add Destination" msgid "Add Domains" msgstr "Добави дестинация" -#: websiteFunctions/templates/websiteFunctions/website.html:242 -#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:271 #, fuzzy #| msgid "Select Domain" msgid "List Domains" msgstr "Избери Домейн" -#: websiteFunctions/templates/websiteFunctions/website.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:733 +#: websiteFunctions/templates/websiteFunctions/website.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:760 msgid "Path" msgstr "Път" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "This path is relative to: " msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "Leave empty to set default." msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:317 +#: websiteFunctions/templates/websiteFunctions/website.html:344 #, fuzzy #| msgid "Create Email" msgid "Create Domain" msgstr "Създай Email" -#: websiteFunctions/templates/websiteFunctions/website.html:360 +#: websiteFunctions/templates/websiteFunctions/website.html:387 #, fuzzy #| msgid "Version Management" msgid "PHP Version Changed to:" msgstr "Мениджър на Версия" -#: websiteFunctions/templates/websiteFunctions/website.html:364 +#: websiteFunctions/templates/websiteFunctions/website.html:391 #, fuzzy #| msgid "Delete" msgid "Deleted:" msgstr "Изтрий" -#: websiteFunctions/templates/websiteFunctions/website.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:395 #, fuzzy #| msgid "SSL Issued for" msgid "SSL Issued:" msgstr "SSL издаден за" -#: websiteFunctions/templates/websiteFunctions/website.html:391 +#: websiteFunctions/templates/websiteFunctions/website.html:418 msgid "Close" msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:423 +#: websiteFunctions/templates/websiteFunctions/website.html:450 #, fuzzy #| msgid "Issue SSL" msgid "Issue" msgstr "Издаване на SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:451 +#: websiteFunctions/templates/websiteFunctions/website.html:478 msgid "Configurations" msgstr "Конфигурация" -#: websiteFunctions/templates/websiteFunctions/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:484 msgid "Edit Virtual Host Main Configurations" msgstr "Редактирай Virtual Host Main Configurations" -#: websiteFunctions/templates/websiteFunctions/website.html:459 +#: websiteFunctions/templates/websiteFunctions/website.html:486 msgid "Edit vHost Main Configurations" msgstr "Редактирай vHost Main Configurations" -#: websiteFunctions/templates/websiteFunctions/website.html:469 -#: websiteFunctions/templates/websiteFunctions/website.html:471 +#: websiteFunctions/templates/websiteFunctions/website.html:496 +#: websiteFunctions/templates/websiteFunctions/website.html:498 msgid "Add Rewrite Rules (.htaccess)" msgstr "Добави Rewrite Rules (.htaccess)" -#: websiteFunctions/templates/websiteFunctions/website.html:481 +#: websiteFunctions/templates/websiteFunctions/website.html:508 msgid "Add Your Own SSL" msgstr "Добави свой SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:483 +#: websiteFunctions/templates/websiteFunctions/website.html:510 msgid "Add SSL" msgstr "Добави SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:525 msgid "SSL Saved" msgstr "SSL Запазен" -#: websiteFunctions/templates/websiteFunctions/website.html:503 +#: websiteFunctions/templates/websiteFunctions/website.html:530 msgid "Could not save SSL. Error message:" msgstr "SSL не е запазен, защото:" -#: websiteFunctions/templates/websiteFunctions/website.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:580 msgid "Current configuration in the file fetched." msgstr "Текущата конфигурация във файла е изтеглена" -#: websiteFunctions/templates/websiteFunctions/website.html:558 -#: websiteFunctions/templates/websiteFunctions/website.html:571 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:598 msgid "Could not fetch current configuration. Error message:" msgstr "Текущата конфигурация не е изтеглена, защото:" -#: websiteFunctions/templates/websiteFunctions/website.html:567 -#: websiteFunctions/templates/websiteFunctions/website.html:622 +#: websiteFunctions/templates/websiteFunctions/website.html:594 +#: websiteFunctions/templates/websiteFunctions/website.html:649 msgid "Configuration saved. Restart LiteSpeed put them in effect." msgstr "" "Конфигурацията е запазена. Рестартирайте LiteSpeed, за да влезнат в сила " "промените." -#: websiteFunctions/templates/websiteFunctions/website.html:608 +#: websiteFunctions/templates/websiteFunctions/website.html:635 msgid "Current rewrite rules in the file fetched." msgstr "Наличните rewrite rules са изтеглени." -#: websiteFunctions/templates/websiteFunctions/website.html:613 +#: websiteFunctions/templates/websiteFunctions/website.html:640 msgid "Could not fetch current rewrite rules. Error message:" msgstr "Наличните rewrite rules не са изтеглени, защото:" -#: websiteFunctions/templates/websiteFunctions/website.html:626 +#: websiteFunctions/templates/websiteFunctions/website.html:653 msgid "Could not save rewrite rules. Error message:" msgstr "Новите rewrite rules не са запаметени, защото:" -#: websiteFunctions/templates/websiteFunctions/website.html:642 +#: websiteFunctions/templates/websiteFunctions/website.html:669 msgid "Save Rewrite Rules" msgstr "Запази Rewrite Rules" -#: websiteFunctions/templates/websiteFunctions/website.html:665 +#: websiteFunctions/templates/websiteFunctions/website.html:692 msgid "Files" msgstr "Файлове" -#: websiteFunctions/templates/websiteFunctions/website.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:674 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +#: websiteFunctions/templates/websiteFunctions/website.html:701 msgid "File Manager" msgstr "Файл Мениджър" -#: websiteFunctions/templates/websiteFunctions/website.html:713 +#: websiteFunctions/templates/websiteFunctions/website.html:740 msgid "Application Installer" msgstr "Инсталатор на Приложения" -#: websiteFunctions/templates/websiteFunctions/website.html:719 +#: websiteFunctions/templates/websiteFunctions/website.html:746 #, fuzzy #| msgid "Wordpress with LSCache" msgid "Install wordpress with LSCache" msgstr "Wordpress с LSCache" -#: websiteFunctions/templates/websiteFunctions/website.html:721 +#: websiteFunctions/templates/websiteFunctions/website.html:748 msgid "Wordpress with LSCache" msgstr "Wordpress с LSCache" -#: websiteFunctions/templates/websiteFunctions/website.html:755 +#: websiteFunctions/templates/websiteFunctions/website.html:782 msgid "Installation failed. Error message:" msgstr "Инсталацията Не завърши, защото:" -#: websiteFunctions/templates/websiteFunctions/website.html:759 +#: websiteFunctions/templates/websiteFunctions/website.html:786 msgid "Installation successful. To complete the setup visit:" msgstr "Инсталацията завърши успешно. " + +#~ msgid "Reseller" +#~ msgstr "Resseler" diff --git a/locale/bs/LC_MESSAGES/django.mo b/locale/bs/LC_MESSAGES/django.mo index b469df88596aaed67c924350c3f34c8f949b4a1b..f4a8465e22b327a56931b2a86eb21e657d60070e 100644 GIT binary patch delta 8111 zcmYk=2Xs|M9>?){kOUG4C6(~fi+~{=LMVX{1qm@B6hVX-dXruPDEK5GAR_I8s1Yea z+KS2s#Z|hf$GQsG7D2FZ5Fv_dK^EQp{&Hu}@t&Q0X6DYF@}If);jXFk)Lr%X&V~4G zFkE{)#zf=fU}HKrFy>%u)f%%U$(V55immVfM&XCn%c!P)$;PzAI1IupY=YfT&-KB0 z9Er`a3Y#0_Gi%9c;H}sc4`U3ziy`{7- zpXt~F7b9~v>oJt^%`5d8W8Oo5Zk)%)co8+g52y(Ih6Kk1-=YVN@uCLEKux#^)qcFK zpN6c^Jc5eQlNgBmZT(^NXMFPknF>6u3hdCv4Ph751HF)2rXMC^C29pvq8ATg34V@h z*QTv8?XVP8o` ziE)%~qE3Bux-qesj`3K68el3m!v|4Y^%yq6-M0QE9~p)81ZLnRYby%PDEC1{WC%9L z2}m@}Jj})#)WkkPy=E6sTX_Q;Vtl3>xn$HK%tkG&1a;PYqsRo3nSff^Ow`IA#$bHb zT8moYG3$BMbN@v@49s%(wi!039FB@?iY*t~@&HtXry&#ZnFVAN;ElEd(dLU{=^O0bfrKr#zKn-*V)&EQAmCQn|Y$2+H#Tbq&Q4`&U{Lk#=k0SOp>baj$3;Gi^;Q-!Q^&gST z{A)zN$Q{OK^Ii}0k*yZ zbyg;!4%siRLu4wbIAw3-bay|I-B6L~j|%A=REPJYwrGW|e;U={ zR_h+r1Z!>iFzPJ5g{|=;^x_qaXMEGRhdbkTsJ+g@P|QPhd?#v4?n13>3~C~itqV|x zZzXDrcB9%I$0&RU)&3h)e?MFQK%YVzP~e`*Ak++7p$5#sG%Q4|U^*%i_oG7TLv6`Q zRQt`S!~8tP;1SeH&!QsoJ8H}Pdb$&d?n(Uhx}{K|j=G{cDz%nl{Yvfq1*q3&HEIHz zZ2cb8z=v%82dDwh*!vez{r-+RjExK3a#*3ytw^GRSK4GC2h)tV)?hZ}FL5}A+~#i4 zG*m~GsE}8oCRUA#;BH$!fr`LMY>#!Q2zqaKzohX#GTQT7P&d+0GtEYI*b~FBpLGl> zV)L!5QG5L?>QL@Q?fDVZhwF1(j?H@UgM}M$GQNoe(U-$#>?JbG@E**+!=1nrsKc@o zHNh9r4-cS1dl2hSHEQcVLQUWs^v7S3A2@T~5LaqBZsZ&87@3^jof=+gj` z$tXmNQK8v}s^5(o=qNVDlc<$_iGf&$`tV#wy*=Tj?sFxm`Z3rR7ojG;2lZh)fx-A$ zDe>1HU8Euie?Sd<0~NZK{oDy8qv~@}uU83bq7zUnpN8u2Aym6nw*FaE`}r5oe|$?G78OdROr@VbKHp?@c?QMuVMj446c7M%nX02n z?fp6H71W;Ju;p-Or3EFSBA0{Rumbh_W1c3X8J<&CHnSEJ6<9t_0;sKfd$s{fN1gA zB5px-xC1ruy{L#BMYTJRic}qHLjJ?uNQR+a^IK61EJB|$!^o)N6x7NVpgLZO>Tok^ zOZH+1{0C-Z9r|HHxx0W{Py=V7&Qu>;Uxtd@FjNG_qQ^<;6K`J7=~q(Z$V9LF2-XO=3x!0!!Ixf>o5nKj&b+C0Cm3Ea!vVLXnUqc!=9?jCDWd$*9BK594qYrePI!#22wS z`OI@AiE#wEBHnUl#L?|zauB0nGI z9ClUx1mds5FqMq9-~m*}i%~OPh6?#kRL6fuwSV2#e~A8+&!8rH0h94ZRJ-tr?)^jz zpxhQ2+ho}C#)<5ID=MC$LJuB5P2>yIr}G=sA-s-$*ld!!(oky*YJzRBF=nF%?uz;l z^+83n0@eRaRJ)C+32&K1{FQlu3eE5^YNc=3@+YVc&sr~Ae?z?$e)qW(NP(D64LBVY+4-pP7TWtOeKzwH>QL;m<#VV9ub@uvFV;qr-9r|Iiclwv$70l%b22u; zWmX3RDQ`yo=`nP4?5X$vCYeGix=(fA=S4Vz@~fyV@lJC)OtfaACfwaxV(W*a z2AqT`_#kTK+fk8x9@XCg)LA-=A&hTcClf@)C#XHwIH4ZtEwZ z4&4mvD%8sUhUvH;wc@X_1ztsM(VwUfSio#oFE*!~i9Tft$mqc`)C%uGy>?@*4`5r$ zYfO1f~hT=8U!2WaGeuFWLawKX&?a{$5bBMnl_<#y^{1qy+KcV*6 zuhRWeg`&#+P(Ld7qE2%qs>3y?L;DP>-9GD4)Pnwr8s}f=!JkN@$aM7N@K0wln@NuD z{N*}LzL>hPq-Xw8pWy_1+XOyA?H!~&PQEwJv)d{6dP8PW*7Yk%8#~kEto24ZTfB{& zUEV?cyK{T3ZBoYVsWyL-d^~xrNdFyJi=9b*$>*aE(Zg)f96px zB<0%rZ0G%$jNmd#D{PZ4PGGDzW*s%RQFEBI)ZW>T?7q3%=@}atUPFrr+e@Ntk>^Z_ zjSQ}&wjDJOV?SqYthZ=8xgV){8i$bndOburhZIX?HmQXC`#2t#lAa_zLfS#P*ZCzj z)icIPhzp&#jq+65Z6=K*|0xb5>3WdzS$sy%)YrIwdQ<+6>_Gg**1v^!Qr7i22HAWm zcA##Jvnehzzrxn0*SB;3+y_fYE4gU^ZdPP_QHcGb2;Pn>V_wy{}8`5FbC_IzhXd}vyhZP5eyrnt?BwYtd z8>wIItWAjXtaA1xM26o(`KWGk<&wIQb~$Ggl001UhT}{330VwPfBb0Kgr0l>i_@% delta 8140 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 ZH_P!i%WRd^Vn=b|7@xhhZ*0?u{{c%0#CHGy diff --git a/locale/bs/LC_MESSAGES/django.po b/locale/bs/LC_MESSAGES/django.po index c6431ac51..247baf621 100644 --- a/locale/bs/LC_MESSAGES/django.po +++ b/locale/bs/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-10-29 20:47+0500\n" +"POT-Creation-Date: 2017-11-02 02:08+0500\n" "PO-Revision-Date: 2017-10-21 21:00+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -117,7 +117,7 @@ msgstr "Kreiraj backup" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: dns/templates/dns/addDeleteDNSRecords.html:129 -#: firewall/templates/firewall/firewall.html:127 +#: firewall/templates/firewall/firewall.html:135 #: ftp/templates/ftp/listFTPAccounts.html:87 #: managePHP/templates/managePHP/installExtensions.html:61 msgid "ID" @@ -140,9 +140,9 @@ msgstr "Veličina" #: 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/firewall.html:140 #: firewall/templates/firewall/secureSSH.html:122 -#: websiteFunctions/templates/websiteFunctions/website.html:424 +#: websiteFunctions/templates/websiteFunctions/website.html:451 msgid "Delete" msgstr "Briši" @@ -169,6 +169,7 @@ msgstr "Na ovoj stranici možete podesiti Backup destinacije (SFTP)" #: dns/templates/dns/addDeleteDNSRecords.html:60 #: dns/templates/dns/createNameServer.html:48 #: dns/templates/dns/createNameServer.html:65 +#: firewall/templates/firewall/firewall.html:138 msgid "IP Address" msgstr "IP adresa" @@ -180,7 +181,7 @@ msgstr "IP adresa" #: mailServer/templates/mailServer/changeEmailPassword.html:52 #: mailServer/templates/mailServer/createEmailAccount.html:51 #: userManagment/templates/userManagment/createUser.html:123 -#: userManagment/templates/userManagment/modifyUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:106 msgid "Password" msgstr "Šifra" @@ -225,15 +226,15 @@ msgstr "Destinacija je dodana." #: mailServer/templates/mailServer/deleteEmailAccount.html:79 #: manageSSL/templates/manageSSL/manageSSL.html:60 #: userManagment/templates/userManagment/createUser.html:162 -#: userManagment/templates/userManagment/modifyUser.html:139 +#: userManagment/templates/userManagment/modifyUser.html:138 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 #: websiteFunctions/templates/websiteFunctions/website.html:157 -#: websiteFunctions/templates/websiteFunctions/website.html:336 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -#: websiteFunctions/templates/websiteFunctions/website.html:508 -#: websiteFunctions/templates/websiteFunctions/website.html:563 -#: websiteFunctions/templates/websiteFunctions/website.html:618 -#: websiteFunctions/templates/websiteFunctions/website.html:765 +#: websiteFunctions/templates/websiteFunctions/website.html:363 +#: websiteFunctions/templates/websiteFunctions/website.html:405 +#: websiteFunctions/templates/websiteFunctions/website.html:535 +#: websiteFunctions/templates/websiteFunctions/website.html:590 +#: websiteFunctions/templates/websiteFunctions/website.html:645 +#: websiteFunctions/templates/websiteFunctions/website.html:792 msgid "Could not connect to server. Please refresh this page." msgstr "Ne mogu se spojiti na udaljeni računar. Molimo da refreshujete " @@ -298,11 +299,13 @@ msgstr "Backup naslovna " #: 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/homePage.html:268 +#: baseTemplate/templates/baseTemplate/homePage.html:271 +#: baseTemplate/templates/baseTemplate/homePage.html:463 +#: baseTemplate/templates/baseTemplate/homePage.html:466 #: baseTemplate/templates/baseTemplate/index.html:554 #: baseTemplate/templates/baseTemplate/index.html:556 -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Back up" msgstr "Backup" @@ -370,7 +373,7 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:296 msgid "Cancel" msgstr "" @@ -410,9 +413,9 @@ msgid "Website" msgstr "Sajt" #: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:331 -#: baseTemplate/templates/baseTemplate/index.html:625 -#: baseTemplate/templates/baseTemplate/index.html:627 +#: baseTemplate/templates/baseTemplate/homePage.html:333 +#: baseTemplate/templates/baseTemplate/index.html:626 +#: baseTemplate/templates/baseTemplate/index.html:628 #: managePHP/templates/managePHP/installExtensions.html:62 msgid "PHP" msgstr "PHP" @@ -461,7 +464,7 @@ msgstr "Odabir backupa" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 -#: firewall/templates/firewall/firewall.html:156 +#: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:212 msgid "Error message:" msgstr "Greška: " @@ -517,24 +520,28 @@ msgstr "Obrada zahteva" msgid "Total Requests" msgstr "Ukupno zahtijeva" -#: baseTemplate/templates/baseTemplate/homePage.html:173 +#: baseTemplate/templates/baseTemplate/homePage.html:175 +#: baseTemplate/templates/baseTemplate/homePage.html:389 #: userManagment/templates/userManagment/index.html:13 msgid "User Functions" msgstr "Korisničke funkcije" -#: baseTemplate/templates/baseTemplate/homePage.html:176 +#: baseTemplate/templates/baseTemplate/homePage.html:178 +#: baseTemplate/templates/baseTemplate/homePage.html:392 #: baseTemplate/templates/baseTemplate/index.html:426 #: baseTemplate/templates/baseTemplate/index.html:427 #: baseTemplate/templates/baseTemplate/index.html:428 msgid "Users" msgstr "Korisnici" -#: baseTemplate/templates/baseTemplate/homePage.html:186 +#: baseTemplate/templates/baseTemplate/homePage.html:188 +#: baseTemplate/templates/baseTemplate/homePage.html:402 #: websiteFunctions/templates/websiteFunctions/index.html:13 msgid "Website Functions" msgstr "" -#: baseTemplate/templates/baseTemplate/homePage.html:189 +#: baseTemplate/templates/baseTemplate/homePage.html:191 +#: baseTemplate/templates/baseTemplate/homePage.html:405 #: baseTemplate/templates/baseTemplate/index.html:360 #: baseTemplate/templates/baseTemplate/index.html:444 #: baseTemplate/templates/baseTemplate/index.html:445 @@ -543,13 +550,13 @@ msgstr "" msgid "Websites" msgstr "Sajtovi" -#: baseTemplate/templates/baseTemplate/homePage.html:199 +#: baseTemplate/templates/baseTemplate/homePage.html:201 #, fuzzy #| msgid "Modify Package" msgid "Add/Modify Packages" msgstr "Promijeni paket" -#: baseTemplate/templates/baseTemplate/homePage.html:202 +#: baseTemplate/templates/baseTemplate/homePage.html:204 #: baseTemplate/templates/baseTemplate/index.html:366 #: baseTemplate/templates/baseTemplate/index.html:461 #: baseTemplate/templates/baseTemplate/index.html:463 @@ -557,12 +564,14 @@ msgstr "Promijeni paket" msgid "Packages" msgstr "Pakti" -#: baseTemplate/templates/baseTemplate/homePage.html:223 +#: baseTemplate/templates/baseTemplate/homePage.html:225 +#: baseTemplate/templates/baseTemplate/homePage.html:415 #: databases/templates/databases/index.html:12 msgid "Database Functions" msgstr "Funkcije za bazu podataka" -#: baseTemplate/templates/baseTemplate/homePage.html:226 +#: baseTemplate/templates/baseTemplate/homePage.html:228 +#: baseTemplate/templates/baseTemplate/homePage.html:418 #: baseTemplate/templates/baseTemplate/index.html:477 #: baseTemplate/templates/baseTemplate/index.html:478 #: baseTemplate/templates/baseTemplate/index.html:479 @@ -572,23 +581,27 @@ msgstr "Funkcije za bazu podataka" msgid "Databases" msgstr "Baze podataka" -#: baseTemplate/templates/baseTemplate/homePage.html:235 +#: baseTemplate/templates/baseTemplate/homePage.html:237 +#: baseTemplate/templates/baseTemplate/homePage.html:438 msgid "Control DNS" msgstr "" -#: baseTemplate/templates/baseTemplate/homePage.html:238 +#: baseTemplate/templates/baseTemplate/homePage.html:240 +#: baseTemplate/templates/baseTemplate/homePage.html:441 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:250 +#: baseTemplate/templates/baseTemplate/homePage.html:451 #: ftp/templates/ftp/index.html:12 msgid "FTP Functions" msgstr "FTP funkcije" -#: baseTemplate/templates/baseTemplate/homePage.html:251 +#: baseTemplate/templates/baseTemplate/homePage.html:253 +#: baseTemplate/templates/baseTemplate/homePage.html:454 #: baseTemplate/templates/baseTemplate/index.html:378 #: baseTemplate/templates/baseTemplate/index.html:536 #: baseTemplate/templates/baseTemplate/index.html:538 @@ -596,45 +609,47 @@ msgstr "FTP funkcije" msgid "FTP" msgstr "FTP" -#: baseTemplate/templates/baseTemplate/homePage.html:278 -#: baseTemplate/templates/baseTemplate/homePage.html:281 +#: baseTemplate/templates/baseTemplate/homePage.html:280 +#: baseTemplate/templates/baseTemplate/homePage.html:283 +#: baseTemplate/templates/baseTemplate/homePage.html:483 +#: baseTemplate/templates/baseTemplate/homePage.html:486 #: packages/templates/packages/createPackage.html:75 #: packages/templates/packages/modifyPackage.html:80 msgid "Emails" msgstr "Emailovi" -#: baseTemplate/templates/baseTemplate/homePage.html:291 -#: baseTemplate/templates/baseTemplate/homePage.html:294 +#: baseTemplate/templates/baseTemplate/homePage.html:293 +#: baseTemplate/templates/baseTemplate/homePage.html:296 #: tuning/templates/tuning/index.html:12 msgid "Server Tuning" msgstr "Server tuning" -#: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:317 +#: baseTemplate/templates/baseTemplate/homePage.html:320 +#: baseTemplate/templates/baseTemplate/index.html:607 +#: baseTemplate/templates/baseTemplate/index.html:609 +#: baseTemplate/templates/baseTemplate/index.html:642 #: serverStatus/templates/serverStatus/index.html:13 msgid "Server Status" msgstr "Status servera" -#: baseTemplate/templates/baseTemplate/homePage.html:328 +#: baseTemplate/templates/baseTemplate/homePage.html:330 #, fuzzy #| msgid "Edit PHP Configurations" msgid "PHP Configurations" msgstr "Izmijeni PHP konfiguracije" -#: baseTemplate/templates/baseTemplate/homePage.html:340 -#: baseTemplate/templates/baseTemplate/homePage.html:343 -#: baseTemplate/templates/baseTemplate/index.html:643 +#: baseTemplate/templates/baseTemplate/homePage.html:342 +#: baseTemplate/templates/baseTemplate/homePage.html:345 +#: baseTemplate/templates/baseTemplate/index.html:644 #: websiteFunctions/templates/websiteFunctions/website.html:113 msgid "Logs" msgstr "Logovi" -#: baseTemplate/templates/baseTemplate/homePage.html:363 -#: baseTemplate/templates/baseTemplate/homePage.html:366 -#: baseTemplate/templates/baseTemplate/index.html:659 -#: baseTemplate/templates/baseTemplate/index.html:661 +#: baseTemplate/templates/baseTemplate/homePage.html:365 +#: baseTemplate/templates/baseTemplate/homePage.html:368 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:662 msgid "Security" msgstr "Sigurnost" @@ -710,8 +725,8 @@ msgid "Dashboard Quick Menu" msgstr "Kontrolna ploča" #: baseTemplate/templates/baseTemplate/index.html:384 -#: baseTemplate/templates/baseTemplate/index.html:590 -#: baseTemplate/templates/baseTemplate/index.html:592 +#: baseTemplate/templates/baseTemplate/index.html:591 +#: baseTemplate/templates/baseTemplate/index.html:593 msgid "Tuning" msgstr "Tuning" @@ -744,7 +759,7 @@ msgstr "Novi korisnik" #: userManagment/templates/userManagment/index.html:52 #: userManagment/templates/userManagment/index.html:54 #: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:120 +#: userManagment/templates/userManagment/modifyUser.html:119 msgid "Modify User" msgstr "Promjena korisnika" @@ -924,8 +939,8 @@ msgstr "Pristup webmailu" #: 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:683 -#: websiteFunctions/templates/websiteFunctions/website.html:685 +#: websiteFunctions/templates/websiteFunctions/website.html:710 +#: websiteFunctions/templates/websiteFunctions/website.html:712 msgid "Create FTP Account" msgstr "Kreiranje FTP računa" @@ -934,8 +949,8 @@ msgstr "Kreiranje FTP računa" #: 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:695 -#: websiteFunctions/templates/websiteFunctions/website.html:697 +#: websiteFunctions/templates/websiteFunctions/website.html:722 +#: websiteFunctions/templates/websiteFunctions/website.html:724 msgid "Delete FTP Account" msgstr "Briši FTP račun" @@ -950,78 +965,84 @@ msgstr "Lista FTP računa" msgid "Add/Delete Destination" msgstr "Dodaj / izbriši destinaciju" -#: baseTemplate/templates/baseTemplate/index.html:573 +#: baseTemplate/templates/baseTemplate/index.html:565 +#, fuzzy +#| msgid "Restore Back up" +msgid "Remote Back ups" +msgstr "Vrati backup" + #: baseTemplate/templates/baseTemplate/index.html:574 +#: baseTemplate/templates/baseTemplate/index.html:575 msgid "SSL" msgstr "SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 +#: baseTemplate/templates/baseTemplate/index.html:580 #: manageSSL/templates/manageSSL/index.html:28 #: manageSSL/templates/manageSSL/manageSSL.html:13 #: manageSSL/templates/manageSSL/manageSSL.html:20 msgid "Manage SSL" msgstr "Upravljanje SSL-om" -#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:581 #: manageSSL/templates/manageSSL/index.html:40 msgid "Hostname SSL" msgstr "Hostname ssl" -#: baseTemplate/templates/baseTemplate/index.html:588 +#: baseTemplate/templates/baseTemplate/index.html:589 msgid "Server" msgstr "Server" -#: baseTemplate/templates/baseTemplate/index.html:593 +#: baseTemplate/templates/baseTemplate/index.html:594 msgid "NEW" msgstr "Novi" -#: baseTemplate/templates/baseTemplate/index.html:598 +#: baseTemplate/templates/baseTemplate/index.html:599 #: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 #: tuning/templates/tuning/liteSpeedTuning.html:12 msgid "LiteSpeed Tuning" msgstr "LiteSpeed tuning" -#: baseTemplate/templates/baseTemplate/index.html:599 +#: baseTemplate/templates/baseTemplate/index.html:600 #: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 #: tuning/templates/tuning/phpTuning.html:13 msgid "PHP Tuning" msgstr "PHP tuning" -#: baseTemplate/templates/baseTemplate/index.html:614 +#: baseTemplate/templates/baseTemplate/index.html:615 #: serverStatus/templates/serverStatus/index.html:25 #: serverStatus/templates/serverStatus/index.html:27 msgid "LiteSpeed Status" msgstr "LiteSpeed status" -#: baseTemplate/templates/baseTemplate/index.html:615 +#: baseTemplate/templates/baseTemplate/index.html:616 #: serverStatus/templates/serverStatus/cybercpmainlogfile.html:15 #: serverStatus/templates/serverStatus/index.html:37 #: serverStatus/templates/serverStatus/index.html:39 msgid "CyberPanel Main Log File" msgstr "Glavni log fajl" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/installExtensions.html:13 msgid "Install PHP Extensions" msgstr "Instalacija extenzija za php" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/index.html:24 #: managePHP/templates/managePHP/index.html:26 msgid "Install Extensions" msgstr "Instalacija extenzija" -#: baseTemplate/templates/baseTemplate/index.html:633 +#: baseTemplate/templates/baseTemplate/index.html:634 #: managePHP/templates/managePHP/index.html:36 #: managePHP/templates/managePHP/index.html:38 msgid "Edit PHP Configs" msgstr "Promjena php konfiguracije" -#: baseTemplate/templates/baseTemplate/index.html:648 +#: baseTemplate/templates/baseTemplate/index.html:649 msgid "Access Log" msgstr "Pristupni log" -#: baseTemplate/templates/baseTemplate/index.html:649 +#: baseTemplate/templates/baseTemplate/index.html:650 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1029,37 +1050,37 @@ msgstr "Pristupni log" msgid "Error Logs" msgstr "Log grešaka" -#: baseTemplate/templates/baseTemplate/index.html:650 +#: baseTemplate/templates/baseTemplate/index.html:651 #: serverLogs/templates/serverLogs/emailLogs.html:14 #: serverLogs/templates/serverLogs/index.html:49 #: serverLogs/templates/serverLogs/index.html:51 msgid "Email Logs" msgstr "Email logovi" -#: baseTemplate/templates/baseTemplate/index.html:650 +#: baseTemplate/templates/baseTemplate/index.html:651 msgid "Email Log" msgstr "Email log" -#: baseTemplate/templates/baseTemplate/index.html:651 +#: baseTemplate/templates/baseTemplate/index.html:652 #: serverLogs/templates/serverLogs/ftplogs.html:14 #: serverLogs/templates/serverLogs/index.html:61 #: serverLogs/templates/serverLogs/index.html:63 msgid "FTP Logs" msgstr "FTP logovi" -#: baseTemplate/templates/baseTemplate/index.html:666 +#: baseTemplate/templates/baseTemplate/index.html:667 #, fuzzy #| msgid "Firewall" msgid "Firewall Home" msgstr "Firewall " -#: baseTemplate/templates/baseTemplate/index.html:666 +#: baseTemplate/templates/baseTemplate/index.html:667 #: firewall/templates/firewall/index.html:25 #: firewall/templates/firewall/index.html:27 msgid "Firewall" msgstr "Firewall " -#: baseTemplate/templates/baseTemplate/index.html:667 +#: baseTemplate/templates/baseTemplate/index.html:668 #: firewall/templates/firewall/index.html:36 #: firewall/templates/firewall/index.html:38 #: firewall/templates/firewall/secureSSH.html:13 @@ -1201,7 +1222,7 @@ msgid "Cannot change password for " msgstr "Ne može se promijeniti šifra za " #: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:166 +#: firewall/templates/firewall/firewall.html:176 #: ftp/templates/ftp/listFTPAccounts.html:59 msgid "Could Not Connect to server. Please refresh this page" msgstr "Ne mogu se spojiti na server. Molimo da refreshujete " @@ -1237,7 +1258,7 @@ msgstr "Dodajte zapise" #: dns/templates/dns/addDeleteDNSRecords.html:53 #: dns/templates/dns/addDeleteDNSRecords.html:131 -#: firewall/templates/firewall/firewall.html:128 +#: firewall/templates/firewall/firewall.html:136 #: serverStatus/templates/serverStatus/litespeedStatus.html:40 msgid "Name" msgstr "Ime" @@ -1255,7 +1276,7 @@ msgstr "Prioritet" #: dns/templates/dns/createDNSZone.html:27 #: dns/templates/dns/createNameServer.html:27 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 -#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:290 msgid "Domain Name" msgstr "Naziv domene" @@ -1268,7 +1289,7 @@ msgid "Text" msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:111 -#: firewall/templates/firewall/firewall.html:109 +#: firewall/templates/firewall/firewall.html:117 msgid "Add" msgstr "Dodati" @@ -1459,15 +1480,15 @@ msgstr "Nije uspjelo. Greška:" msgid "Action successful." msgstr "Uspješno je radnja obavljena." -#: firewall/templates/firewall/firewall.html:129 +#: firewall/templates/firewall/firewall.html:137 msgid "Protocol" msgstr "Protokol" -#: firewall/templates/firewall/firewall.html:130 +#: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Port" -#: firewall/templates/firewall/firewall.html:162 +#: firewall/templates/firewall/firewall.html:172 msgid "Rule successfully added." msgstr "Pravilo je uspješno dodano." @@ -1538,8 +1559,8 @@ msgstr "Dodaj ključ" #: firewall/templates/firewall/secureSSH.html:158 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:527 -#: websiteFunctions/templates/websiteFunctions/website.html:587 +#: websiteFunctions/templates/websiteFunctions/website.html:554 +#: websiteFunctions/templates/websiteFunctions/website.html:614 msgid "Save" msgstr "Sačuvaj" @@ -1747,7 +1768,7 @@ msgstr "Napredno" #: tuning/templates/tuning/phpTuning.html:28 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:310 msgid "Select PHP" msgstr "Izaberi PHP" @@ -1844,7 +1865,7 @@ msgstr "Idi nazad" #: managePHP/templates/managePHP/installExtensions.html:104 #: tuning/templates/tuning/phpTuning.html:114 -#: userManagment/templates/userManagment/modifyUser.html:144 +#: userManagment/templates/userManagment/modifyUser.html:143 msgid "Cannot fetch details. Error message:" msgstr "Ne mogu da prikupim detalje. Poruka o grešci:" @@ -1935,7 +1956,7 @@ msgstr "Naziv paketa" #: packages/templates/packages/createPackage.html:35 #: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:223 +#: websiteFunctions/templates/websiteFunctions/website.html:250 #, fuzzy #| msgid "Domain Name" msgid "Domains" @@ -2240,7 +2261,7 @@ msgstr "Isključi" #: tuning/templates/tuning/liteSpeedTuning.html:74 #: tuning/templates/tuning/phpTuning.html:97 -#: userManagment/templates/userManagment/modifyUser.html:78 +#: userManagment/templates/userManagment/modifyUser.html:77 msgid "Currently:" msgstr "Trenutno:" @@ -2358,18 +2379,18 @@ msgid "Account Type" msgstr "Tip računa" #: userManagment/templates/userManagment/createUser.html:67 -#: userManagment/templates/userManagment/modifyUser.html:73 -msgid "Reseller" -msgstr "Reseller" +#: userManagment/templates/userManagment/modifyUser.html:72 +msgid "Admin" +msgstr "Administrator" #: userManagment/templates/userManagment/createUser.html:68 #: userManagment/templates/userManagment/createUser.html:79 -#: userManagment/templates/userManagment/modifyUser.html:74 +#: userManagment/templates/userManagment/modifyUser.html:73 msgid "Normal User" msgstr "Obični korisnik" #: userManagment/templates/userManagment/createUser.html:92 -#: userManagment/templates/userManagment/modifyUser.html:89 +#: userManagment/templates/userManagment/modifyUser.html:88 #: userManagment/templates/userManagment/userProfile.html:67 #: userManagment/templates/userManagment/userProfile.html:74 msgid "User Accounts Limit" @@ -2381,7 +2402,7 @@ msgid "Only Numbers" msgstr "Samo brojevi" #: userManagment/templates/userManagment/createUser.html:103 -#: userManagment/templates/userManagment/modifyUser.html:99 +#: userManagment/templates/userManagment/modifyUser.html:98 #: userManagment/templates/userManagment/userProfile.html:82 msgid "Websites Limit" msgstr "" @@ -2406,7 +2427,7 @@ msgid "Create User" msgstr "Novi korisnik" #: userManagment/templates/userManagment/createUser.html:154 -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid "Account with username:" msgstr "" @@ -2460,19 +2481,15 @@ msgstr "" msgid "Select Account" msgstr "Odaberite račun" -#: userManagment/templates/userManagment/modifyUser.html:72 -msgid "Admin" -msgstr "Administrator" - -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid " is successfully modified." msgstr " uspješno je izmijenjen." -#: userManagment/templates/userManagment/modifyUser.html:135 +#: userManagment/templates/userManagment/modifyUser.html:134 msgid "Cannot modify user. Error message:" msgstr "" -#: userManagment/templates/userManagment/modifyUser.html:148 +#: userManagment/templates/userManagment/modifyUser.html:147 msgid "Details fetched." msgstr "" @@ -2521,35 +2538,35 @@ msgid "Select Owner" msgstr "Vlasnik" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:294 +#: websiteFunctions/templates/websiteFunctions/website.html:305 msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" msgstr "" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:84 -#: websiteFunctions/templates/websiteFunctions/website.html:299 +#: websiteFunctions/templates/websiteFunctions/website.html:326 msgid "Additional Features" msgstr "Dodatne informacije" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:91 -#: websiteFunctions/templates/websiteFunctions/website.html:306 +#: websiteFunctions/templates/websiteFunctions/website.html:333 msgid "" "For SSL to work DNS of domain should point to server, otherwise self signed " "SSL will be issued, you can add your own SSL later." msgstr "" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:113 -#: websiteFunctions/templates/websiteFunctions/website.html:328 +#: websiteFunctions/templates/websiteFunctions/website.html:355 msgid "Cannot create website. Error message:" msgstr "" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid "Website with domain" msgstr "" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid " is Successfully Created" msgstr " je spješno kreiran" @@ -2689,168 +2706,173 @@ msgid "" msgstr "" #: websiteFunctions/templates/websiteFunctions/website.html:173 +#: websiteFunctions/templates/websiteFunctions/website.html:212 msgid "Next" msgstr "Sljedeće" #: websiteFunctions/templates/websiteFunctions/website.html:174 +#: websiteFunctions/templates/websiteFunctions/website.html:213 msgid "Previous" msgstr "Prethodno" -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:232 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +#: websiteFunctions/templates/websiteFunctions/website.html:259 #, fuzzy #| msgid "Add Destination" msgid "Add Domains" msgstr "Dodaj destinaciju" -#: websiteFunctions/templates/websiteFunctions/website.html:242 -#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:271 #, fuzzy #| msgid "Select Domain" msgid "List Domains" msgstr "Odaberite domene" -#: websiteFunctions/templates/websiteFunctions/website.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:733 +#: websiteFunctions/templates/websiteFunctions/website.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:760 msgid "Path" msgstr "Putanja" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "This path is relative to: " msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "Leave empty to set default." msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:317 +#: websiteFunctions/templates/websiteFunctions/website.html:344 #, fuzzy #| msgid "Create Email" msgid "Create Domain" msgstr "Kreiraj email" -#: websiteFunctions/templates/websiteFunctions/website.html:360 +#: websiteFunctions/templates/websiteFunctions/website.html:387 #, fuzzy #| msgid "Version Management" msgid "PHP Version Changed to:" msgstr "Upravljanje verzijama" -#: websiteFunctions/templates/websiteFunctions/website.html:364 +#: websiteFunctions/templates/websiteFunctions/website.html:391 #, fuzzy #| msgid "Delete" msgid "Deleted:" msgstr "Briši" -#: websiteFunctions/templates/websiteFunctions/website.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:395 #, fuzzy #| msgid "SSL Issued for" msgid "SSL Issued:" msgstr "SSL izdat za " -#: websiteFunctions/templates/websiteFunctions/website.html:391 +#: websiteFunctions/templates/websiteFunctions/website.html:418 msgid "Close" msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:423 +#: websiteFunctions/templates/websiteFunctions/website.html:450 #, fuzzy #| msgid "Issue SSL" msgid "Issue" msgstr "Izdavanje SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:451 +#: websiteFunctions/templates/websiteFunctions/website.html:478 msgid "Configurations" msgstr "Upravljajte postavkama" -#: websiteFunctions/templates/websiteFunctions/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:484 #, fuzzy #| msgid "Edit PHP Configurations" msgid "Edit Virtual Host Main Configurations" msgstr "Izmijeni PHP konfiguracije" -#: websiteFunctions/templates/websiteFunctions/website.html:459 +#: websiteFunctions/templates/websiteFunctions/website.html:486 msgid "Edit vHost Main Configurations" msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:469 -#: websiteFunctions/templates/websiteFunctions/website.html:471 +#: websiteFunctions/templates/websiteFunctions/website.html:496 +#: websiteFunctions/templates/websiteFunctions/website.html:498 msgid "Add Rewrite Rules (.htaccess)" msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:481 +#: websiteFunctions/templates/websiteFunctions/website.html:508 #, fuzzy #| msgid "Add SSL" msgid "Add Your Own SSL" msgstr "Dodaj SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:483 +#: websiteFunctions/templates/websiteFunctions/website.html:510 msgid "Add SSL" msgstr "Dodaj SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:525 msgid "SSL Saved" msgstr "SLL spremljen" -#: websiteFunctions/templates/websiteFunctions/website.html:503 +#: websiteFunctions/templates/websiteFunctions/website.html:530 msgid "Could not save SSL. Error message:" msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:580 msgid "Current configuration in the file fetched." msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:558 -#: websiteFunctions/templates/websiteFunctions/website.html:571 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:598 msgid "Could not fetch current configuration. Error message:" msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:567 -#: websiteFunctions/templates/websiteFunctions/website.html:622 +#: websiteFunctions/templates/websiteFunctions/website.html:594 +#: websiteFunctions/templates/websiteFunctions/website.html:649 msgid "Configuration saved. Restart LiteSpeed put them in effect." msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:608 +#: websiteFunctions/templates/websiteFunctions/website.html:635 msgid "Current rewrite rules in the file fetched." msgstr "Trenutno rewrite pravilo je dohvaćeno." -#: websiteFunctions/templates/websiteFunctions/website.html:613 +#: websiteFunctions/templates/websiteFunctions/website.html:640 msgid "Could not fetch current rewrite rules. Error message:" msgstr "Nisam mogao dohvatiti trenutno rewrite pravilo. Poruka s greškom:" -#: websiteFunctions/templates/websiteFunctions/website.html:626 +#: websiteFunctions/templates/websiteFunctions/website.html:653 msgid "Could not save rewrite rules. Error message:" msgstr "Nisam mogao promijeniti vrijednost rewrite pravila. Poruka s greškom:" -#: websiteFunctions/templates/websiteFunctions/website.html:642 +#: websiteFunctions/templates/websiteFunctions/website.html:669 msgid "Save Rewrite Rules" msgstr "Sačuvaj promjene" -#: websiteFunctions/templates/websiteFunctions/website.html:665 +#: websiteFunctions/templates/websiteFunctions/website.html:692 msgid "Files" msgstr "Datoteke" -#: websiteFunctions/templates/websiteFunctions/website.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:674 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +#: websiteFunctions/templates/websiteFunctions/website.html:701 msgid "File Manager" msgstr "Upravljač datotekama" -#: websiteFunctions/templates/websiteFunctions/website.html:713 +#: websiteFunctions/templates/websiteFunctions/website.html:740 msgid "Application Installer" msgstr "Instalacija aplikacija" -#: websiteFunctions/templates/websiteFunctions/website.html:719 +#: websiteFunctions/templates/websiteFunctions/website.html:746 #, fuzzy #| msgid "Wordpress with LSCache" msgid "Install wordpress with LSCache" msgstr "Wordpress sa LSCache" -#: websiteFunctions/templates/websiteFunctions/website.html:721 +#: websiteFunctions/templates/websiteFunctions/website.html:748 msgid "Wordpress with LSCache" msgstr "Wordpress sa LSCache" -#: websiteFunctions/templates/websiteFunctions/website.html:755 +#: websiteFunctions/templates/websiteFunctions/website.html:782 msgid "Installation failed. Error message:" msgstr "Nije uspjela instalacija. Greška:" -#: websiteFunctions/templates/websiteFunctions/website.html:759 +#: websiteFunctions/templates/websiteFunctions/website.html:786 msgid "Installation successful. To complete the setup visit:" msgstr "Instalacija je uspjela. Do završetka je ostalo samo da posjetite:" + +#~ msgid "Reseller" +#~ msgstr "Reseller" diff --git a/locale/cn/LC_MESSAGES/django.mo b/locale/cn/LC_MESSAGES/django.mo index eca7af4abcb7a55c1fc565c1e988d3c62ff8e038..3b2e15527d2d4167528958a24f54e04313971472 100644 GIT binary patch delta 10394 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 Un>**i(wXO$&DnhL$%T>s1)%0I5dZ)H diff --git a/locale/cn/LC_MESSAGES/django.po b/locale/cn/LC_MESSAGES/django.po index 060a00653..eecc53cbd 100644 --- a/locale/cn/LC_MESSAGES/django.po +++ b/locale/cn/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-10-30 10:05+0500\n" +"POT-Creation-Date: 2017-11-02 02:08+0500\n" "PO-Revision-Date: 2017-10-29 19:32+0100\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -116,7 +116,7 @@ msgstr "取消备份" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: dns/templates/dns/addDeleteDNSRecords.html:129 -#: firewall/templates/firewall/firewall.html:127 +#: firewall/templates/firewall/firewall.html:135 #: ftp/templates/ftp/listFTPAccounts.html:87 #: managePHP/templates/managePHP/installExtensions.html:61 msgid "ID" @@ -139,9 +139,9 @@ msgstr "大小" #: 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/firewall.html:140 #: firewall/templates/firewall/secureSSH.html:122 -#: websiteFunctions/templates/websiteFunctions/website.html:424 +#: websiteFunctions/templates/websiteFunctions/website.html:451 msgid "Delete" msgstr "删除" @@ -168,6 +168,7 @@ msgstr "这里是远程备份页面(SFTP)" #: dns/templates/dns/addDeleteDNSRecords.html:60 #: dns/templates/dns/createNameServer.html:48 #: dns/templates/dns/createNameServer.html:65 +#: firewall/templates/firewall/firewall.html:138 msgid "IP Address" msgstr "IP地址" @@ -179,7 +180,7 @@ msgstr "IP地址" #: mailServer/templates/mailServer/changeEmailPassword.html:52 #: mailServer/templates/mailServer/createEmailAccount.html:51 #: userManagment/templates/userManagment/createUser.html:123 -#: userManagment/templates/userManagment/modifyUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:106 msgid "Password" msgstr "密码" @@ -224,15 +225,15 @@ msgstr "远程目录已添加" #: mailServer/templates/mailServer/deleteEmailAccount.html:79 #: manageSSL/templates/manageSSL/manageSSL.html:60 #: userManagment/templates/userManagment/createUser.html:162 -#: userManagment/templates/userManagment/modifyUser.html:139 +#: userManagment/templates/userManagment/modifyUser.html:138 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 #: websiteFunctions/templates/websiteFunctions/website.html:157 -#: websiteFunctions/templates/websiteFunctions/website.html:336 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -#: websiteFunctions/templates/websiteFunctions/website.html:508 -#: websiteFunctions/templates/websiteFunctions/website.html:563 -#: websiteFunctions/templates/websiteFunctions/website.html:618 -#: websiteFunctions/templates/websiteFunctions/website.html:765 +#: websiteFunctions/templates/websiteFunctions/website.html:363 +#: websiteFunctions/templates/websiteFunctions/website.html:405 +#: websiteFunctions/templates/websiteFunctions/website.html:535 +#: websiteFunctions/templates/websiteFunctions/website.html:590 +#: websiteFunctions/templates/websiteFunctions/website.html:645 +#: websiteFunctions/templates/websiteFunctions/website.html:792 msgid "Could not connect to server. Please refresh this page." msgstr "无法连接到服务器, 请刷新此页面" @@ -297,8 +298,10 @@ 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/homePage.html:268 +#: baseTemplate/templates/baseTemplate/homePage.html:271 +#: baseTemplate/templates/baseTemplate/homePage.html:463 +#: baseTemplate/templates/baseTemplate/homePage.html:466 #: baseTemplate/templates/baseTemplate/index.html:554 #: baseTemplate/templates/baseTemplate/index.html:556 #: baseTemplate/templates/baseTemplate/index.html:573 @@ -361,7 +364,7 @@ msgid "Start Transfer" msgstr "开始迁移" #: backup/templates/backup/remoteBackups.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:296 msgid "Cancel" msgstr "取消" @@ -391,7 +394,7 @@ msgid "Website" msgstr "网站" #: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:331 +#: baseTemplate/templates/baseTemplate/homePage.html:333 #: baseTemplate/templates/baseTemplate/index.html:626 #: baseTemplate/templates/baseTemplate/index.html:628 #: managePHP/templates/managePHP/installExtensions.html:62 @@ -441,7 +444,7 @@ msgstr "选择备份" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 -#: firewall/templates/firewall/firewall.html:156 +#: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:212 msgid "Error message:" msgstr "错误信息: " @@ -497,24 +500,28 @@ msgstr "当前请求数" msgid "Total Requests" msgstr "总请求数" -#: baseTemplate/templates/baseTemplate/homePage.html:173 +#: baseTemplate/templates/baseTemplate/homePage.html:175 +#: baseTemplate/templates/baseTemplate/homePage.html:389 #: userManagment/templates/userManagment/index.html:13 msgid "User Functions" msgstr "用户功能" -#: baseTemplate/templates/baseTemplate/homePage.html:176 +#: baseTemplate/templates/baseTemplate/homePage.html:178 +#: baseTemplate/templates/baseTemplate/homePage.html:392 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:188 +#: baseTemplate/templates/baseTemplate/homePage.html:402 #: websiteFunctions/templates/websiteFunctions/index.html:13 msgid "Website Functions" msgstr "网站功能" -#: baseTemplate/templates/baseTemplate/homePage.html:189 +#: baseTemplate/templates/baseTemplate/homePage.html:191 +#: baseTemplate/templates/baseTemplate/homePage.html:405 #: baseTemplate/templates/baseTemplate/index.html:360 #: baseTemplate/templates/baseTemplate/index.html:444 #: baseTemplate/templates/baseTemplate/index.html:445 @@ -523,11 +530,11 @@ msgstr "网站功能" msgid "Websites" msgstr "网站" -#: baseTemplate/templates/baseTemplate/homePage.html:199 +#: baseTemplate/templates/baseTemplate/homePage.html:201 msgid "Add/Modify Packages" msgstr "创建/修改套餐" -#: baseTemplate/templates/baseTemplate/homePage.html:202 +#: baseTemplate/templates/baseTemplate/homePage.html:204 #: baseTemplate/templates/baseTemplate/index.html:366 #: baseTemplate/templates/baseTemplate/index.html:461 #: baseTemplate/templates/baseTemplate/index.html:463 @@ -535,12 +542,14 @@ msgstr "创建/修改套餐" msgid "Packages" msgstr "套餐" -#: baseTemplate/templates/baseTemplate/homePage.html:223 +#: baseTemplate/templates/baseTemplate/homePage.html:225 +#: baseTemplate/templates/baseTemplate/homePage.html:415 #: databases/templates/databases/index.html:12 msgid "Database Functions" msgstr "数据库功能" -#: baseTemplate/templates/baseTemplate/homePage.html:226 +#: baseTemplate/templates/baseTemplate/homePage.html:228 +#: baseTemplate/templates/baseTemplate/homePage.html:418 #: baseTemplate/templates/baseTemplate/index.html:477 #: baseTemplate/templates/baseTemplate/index.html:478 #: baseTemplate/templates/baseTemplate/index.html:479 @@ -550,23 +559,27 @@ msgstr "数据库功能" msgid "Databases" msgstr "数据库" -#: baseTemplate/templates/baseTemplate/homePage.html:235 +#: baseTemplate/templates/baseTemplate/homePage.html:237 +#: baseTemplate/templates/baseTemplate/homePage.html:438 msgid "Control DNS" msgstr "控制DNS" -#: baseTemplate/templates/baseTemplate/homePage.html:238 +#: baseTemplate/templates/baseTemplate/homePage.html:240 +#: baseTemplate/templates/baseTemplate/homePage.html:441 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:250 +#: baseTemplate/templates/baseTemplate/homePage.html:451 #: ftp/templates/ftp/index.html:12 msgid "FTP Functions" msgstr "FTP功能" -#: baseTemplate/templates/baseTemplate/homePage.html:251 +#: baseTemplate/templates/baseTemplate/homePage.html:253 +#: baseTemplate/templates/baseTemplate/homePage.html:454 #: baseTemplate/templates/baseTemplate/index.html:378 #: baseTemplate/templates/baseTemplate/index.html:536 #: baseTemplate/templates/baseTemplate/index.html:538 @@ -574,21 +587,23 @@ msgstr "FTP功能" msgid "FTP" msgstr "FTP" -#: baseTemplate/templates/baseTemplate/homePage.html:278 -#: baseTemplate/templates/baseTemplate/homePage.html:281 +#: baseTemplate/templates/baseTemplate/homePage.html:280 +#: baseTemplate/templates/baseTemplate/homePage.html:283 +#: baseTemplate/templates/baseTemplate/homePage.html:483 +#: baseTemplate/templates/baseTemplate/homePage.html:486 #: packages/templates/packages/createPackage.html:75 #: packages/templates/packages/modifyPackage.html:80 msgid "Emails" msgstr "Emails" -#: baseTemplate/templates/baseTemplate/homePage.html:291 -#: baseTemplate/templates/baseTemplate/homePage.html:294 +#: baseTemplate/templates/baseTemplate/homePage.html:293 +#: baseTemplate/templates/baseTemplate/homePage.html:296 #: 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/homePage.html:317 +#: baseTemplate/templates/baseTemplate/homePage.html:320 #: baseTemplate/templates/baseTemplate/index.html:607 #: baseTemplate/templates/baseTemplate/index.html:609 #: baseTemplate/templates/baseTemplate/index.html:642 @@ -596,19 +611,19 @@ msgstr "服务器设置" msgid "Server Status" msgstr "服务器状态" -#: baseTemplate/templates/baseTemplate/homePage.html:328 +#: baseTemplate/templates/baseTemplate/homePage.html:330 msgid "PHP Configurations" msgstr "设置PHP参数" -#: baseTemplate/templates/baseTemplate/homePage.html:340 -#: baseTemplate/templates/baseTemplate/homePage.html:343 +#: baseTemplate/templates/baseTemplate/homePage.html:342 +#: baseTemplate/templates/baseTemplate/homePage.html:345 #: baseTemplate/templates/baseTemplate/index.html:644 #: websiteFunctions/templates/websiteFunctions/website.html:113 msgid "Logs" msgstr "日志" -#: baseTemplate/templates/baseTemplate/homePage.html:363 -#: baseTemplate/templates/baseTemplate/homePage.html:366 +#: baseTemplate/templates/baseTemplate/homePage.html:365 +#: baseTemplate/templates/baseTemplate/homePage.html:368 #: baseTemplate/templates/baseTemplate/index.html:660 #: baseTemplate/templates/baseTemplate/index.html:662 msgid "Security" @@ -712,7 +727,7 @@ msgstr "创建新用户" #: userManagment/templates/userManagment/index.html:52 #: userManagment/templates/userManagment/index.html:54 #: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:120 +#: userManagment/templates/userManagment/modifyUser.html:119 msgid "Modify User" msgstr "修改用户" @@ -892,8 +907,8 @@ msgstr "进入Webmail" #: 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:683 -#: websiteFunctions/templates/websiteFunctions/website.html:685 +#: websiteFunctions/templates/websiteFunctions/website.html:710 +#: websiteFunctions/templates/websiteFunctions/website.html:712 msgid "Create FTP Account" msgstr "创建FTP用户" @@ -902,8 +917,8 @@ msgstr "创建FTP用户" #: 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:695 -#: websiteFunctions/templates/websiteFunctions/website.html:697 +#: websiteFunctions/templates/websiteFunctions/website.html:722 +#: websiteFunctions/templates/websiteFunctions/website.html:724 msgid "Delete FTP Account" msgstr "删除FTP用户" @@ -1171,7 +1186,7 @@ msgid "Cannot change password for " msgstr "无法为修改密码 " #: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:166 +#: firewall/templates/firewall/firewall.html:176 #: ftp/templates/ftp/listFTPAccounts.html:59 msgid "Could Not Connect to server. Please refresh this page" msgstr "无法连接到服务器, 请刷新此页面" @@ -1205,7 +1220,7 @@ msgstr "添加记录" #: dns/templates/dns/addDeleteDNSRecords.html:53 #: dns/templates/dns/addDeleteDNSRecords.html:131 -#: firewall/templates/firewall/firewall.html:128 +#: firewall/templates/firewall/firewall.html:136 #: serverStatus/templates/serverStatus/litespeedStatus.html:40 msgid "Name" msgstr "名称" @@ -1223,7 +1238,7 @@ msgstr "优先级" #: dns/templates/dns/createDNSZone.html:27 #: dns/templates/dns/createNameServer.html:27 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 -#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:290 msgid "Domain Name" msgstr "域名" @@ -1236,7 +1251,7 @@ msgid "Text" msgstr "内容" #: dns/templates/dns/addDeleteDNSRecords.html:111 -#: firewall/templates/firewall/firewall.html:109 +#: firewall/templates/firewall/firewall.html:117 msgid "Add" msgstr "添加" @@ -1417,15 +1432,15 @@ msgstr "操作失败, 错误信息: " msgid "Action successful." msgstr "操作成功" -#: firewall/templates/firewall/firewall.html:129 +#: firewall/templates/firewall/firewall.html:137 msgid "Protocol" msgstr "协议" -#: firewall/templates/firewall/firewall.html:130 +#: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "端口" -#: firewall/templates/firewall/firewall.html:162 +#: firewall/templates/firewall/firewall.html:172 msgid "Rule successfully added." msgstr "成功添加规则" @@ -1492,8 +1507,8 @@ msgstr "添加密钥" #: firewall/templates/firewall/secureSSH.html:158 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:527 -#: websiteFunctions/templates/websiteFunctions/website.html:587 +#: websiteFunctions/templates/websiteFunctions/website.html:554 +#: websiteFunctions/templates/websiteFunctions/website.html:614 msgid "Save" msgstr "保存" @@ -1696,7 +1711,7 @@ msgstr "高级" #: tuning/templates/tuning/phpTuning.html:28 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:310 msgid "Select PHP" msgstr "选择PHP版本" @@ -1790,7 +1805,7 @@ msgstr "返回" #: managePHP/templates/managePHP/installExtensions.html:104 #: tuning/templates/tuning/phpTuning.html:114 -#: userManagment/templates/userManagment/modifyUser.html:144 +#: userManagment/templates/userManagment/modifyUser.html:143 msgid "Cannot fetch details. Error message:" msgstr "无法获取详情, 错误信息: " @@ -1876,7 +1891,7 @@ msgstr "套餐名称" #: packages/templates/packages/createPackage.html:35 #: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:223 +#: websiteFunctions/templates/websiteFunctions/website.html:250 msgid "Domains" msgstr "域名" @@ -2172,7 +2187,7 @@ msgstr "关闭" #: tuning/templates/tuning/liteSpeedTuning.html:74 #: tuning/templates/tuning/phpTuning.html:97 -#: userManagment/templates/userManagment/modifyUser.html:78 +#: userManagment/templates/userManagment/modifyUser.html:77 msgid "Currently:" msgstr "当前:" @@ -2292,18 +2307,18 @@ msgid "Account Type" msgstr "用户类型" #: userManagment/templates/userManagment/createUser.html:67 -#: userManagment/templates/userManagment/modifyUser.html:73 -msgid "Reseller" -msgstr "分销商" +#: userManagment/templates/userManagment/modifyUser.html:72 +msgid "Admin" +msgstr "Admin" #: userManagment/templates/userManagment/createUser.html:68 #: userManagment/templates/userManagment/createUser.html:79 -#: userManagment/templates/userManagment/modifyUser.html:74 +#: userManagment/templates/userManagment/modifyUser.html:73 msgid "Normal User" msgstr "普通用户" #: userManagment/templates/userManagment/createUser.html:92 -#: userManagment/templates/userManagment/modifyUser.html:89 +#: userManagment/templates/userManagment/modifyUser.html:88 #: userManagment/templates/userManagment/userProfile.html:67 #: userManagment/templates/userManagment/userProfile.html:74 msgid "User Accounts Limit" @@ -2315,7 +2330,7 @@ msgid "Only Numbers" msgstr "仅允许数字" #: userManagment/templates/userManagment/createUser.html:103 -#: userManagment/templates/userManagment/modifyUser.html:99 +#: userManagment/templates/userManagment/modifyUser.html:98 #: userManagment/templates/userManagment/userProfile.html:82 msgid "Websites Limit" msgstr "网站数量限制" @@ -2340,7 +2355,7 @@ msgid "Create User" msgstr "创建用户" #: userManagment/templates/userManagment/createUser.html:154 -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid "Account with username:" msgstr "用户名为:" @@ -2394,19 +2409,15 @@ msgstr "在此页面编辑已存在用户." msgid "Select Account" msgstr "选择用户" -#: userManagment/templates/userManagment/modifyUser.html:72 -msgid "Admin" -msgstr "Admin" - -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid " is successfully modified." msgstr "已成功修改." -#: userManagment/templates/userManagment/modifyUser.html:135 +#: userManagment/templates/userManagment/modifyUser.html:134 msgid "Cannot modify user. Error message:" msgstr "无法编辑用户, 错误信息:" -#: userManagment/templates/userManagment/modifyUser.html:148 +#: userManagment/templates/userManagment/modifyUser.html:147 msgid "Details fetched." msgstr "详情已更新." @@ -2455,18 +2466,18 @@ msgid "Select Owner" msgstr "选择拥有者" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:294 +#: websiteFunctions/templates/websiteFunctions/website.html:305 msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" msgstr "无效域名(注意: 不需要添加http或https)" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:84 -#: websiteFunctions/templates/websiteFunctions/website.html:299 +#: websiteFunctions/templates/websiteFunctions/website.html:326 msgid "Additional Features" msgstr "额外功能" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:91 -#: websiteFunctions/templates/websiteFunctions/website.html:306 +#: websiteFunctions/templates/websiteFunctions/website.html:333 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." @@ -2475,17 +2486,17 @@ msgstr "" "之后添加自有证书或重新申请签发Let's Encrypt证书." #: websiteFunctions/templates/websiteFunctions/createWebsite.html:113 -#: websiteFunctions/templates/websiteFunctions/website.html:328 +#: websiteFunctions/templates/websiteFunctions/website.html:355 msgid "Cannot create website. Error message:" msgstr "无法创建网站, 错误信息:" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid "Website with domain" msgstr "网站域名" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid " is Successfully Created" msgstr " 已成功创建" @@ -2621,151 +2632,156 @@ msgid "" msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" #: websiteFunctions/templates/websiteFunctions/website.html:173 +#: websiteFunctions/templates/websiteFunctions/website.html:212 msgid "Next" msgstr "下一个" #: websiteFunctions/templates/websiteFunctions/website.html:174 +#: websiteFunctions/templates/websiteFunctions/website.html:213 msgid "Previous" msgstr "上一个" -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:232 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +#: websiteFunctions/templates/websiteFunctions/website.html:259 msgid "Add Domains" msgstr "添加域名" -#: websiteFunctions/templates/websiteFunctions/website.html:242 -#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:271 msgid "List Domains" msgstr "查看域名" -#: websiteFunctions/templates/websiteFunctions/website.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:733 +#: websiteFunctions/templates/websiteFunctions/website.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:760 msgid "Path" msgstr "路径" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "This path is relative to: " msgstr "此目录相对与:" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "Leave empty to set default." msgstr "留空则设置为默认根目录." -#: websiteFunctions/templates/websiteFunctions/website.html:317 +#: websiteFunctions/templates/websiteFunctions/website.html:344 msgid "Create Domain" msgstr "创建域名" -#: websiteFunctions/templates/websiteFunctions/website.html:360 +#: websiteFunctions/templates/websiteFunctions/website.html:387 msgid "PHP Version Changed to:" msgstr "版本管理:" -#: websiteFunctions/templates/websiteFunctions/website.html:364 +#: websiteFunctions/templates/websiteFunctions/website.html:391 msgid "Deleted:" msgstr "删除:" -#: websiteFunctions/templates/websiteFunctions/website.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:395 msgid "SSL Issued:" msgstr "已为签发证书:" -#: websiteFunctions/templates/websiteFunctions/website.html:391 +#: websiteFunctions/templates/websiteFunctions/website.html:418 msgid "Close" msgstr "关闭" -#: websiteFunctions/templates/websiteFunctions/website.html:423 +#: websiteFunctions/templates/websiteFunctions/website.html:450 msgid "Issue" msgstr "签发SSL证书" -#: websiteFunctions/templates/websiteFunctions/website.html:451 +#: websiteFunctions/templates/websiteFunctions/website.html:478 msgid "Configurations" msgstr "配置" -#: websiteFunctions/templates/websiteFunctions/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:484 msgid "Edit Virtual Host Main Configurations" msgstr "编辑vHost主配置" -#: websiteFunctions/templates/websiteFunctions/website.html:459 +#: websiteFunctions/templates/websiteFunctions/website.html:486 msgid "Edit vHost Main Configurations" msgstr "编辑vHost主配置" -#: websiteFunctions/templates/websiteFunctions/website.html:469 -#: websiteFunctions/templates/websiteFunctions/website.html:471 +#: websiteFunctions/templates/websiteFunctions/website.html:496 +#: websiteFunctions/templates/websiteFunctions/website.html:498 msgid "Add Rewrite Rules (.htaccess)" msgstr "添加Rewrite Rules (.htaccess)" -#: websiteFunctions/templates/websiteFunctions/website.html:481 +#: websiteFunctions/templates/websiteFunctions/website.html:508 msgid "Add Your Own SSL" msgstr "添加SSL证书" -#: websiteFunctions/templates/websiteFunctions/website.html:483 +#: websiteFunctions/templates/websiteFunctions/website.html:510 msgid "Add SSL" msgstr "添加SSL证书" -#: websiteFunctions/templates/websiteFunctions/website.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:525 msgid "SSL Saved" msgstr "SSL证书已保存" -#: websiteFunctions/templates/websiteFunctions/website.html:503 +#: websiteFunctions/templates/websiteFunctions/website.html:530 msgid "Could not save SSL. Error message:" msgstr "无法保存SSL证书, 错误信息:" -#: websiteFunctions/templates/websiteFunctions/website.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:580 msgid "Current configuration in the file fetched." msgstr "当前配置读取成功." -#: websiteFunctions/templates/websiteFunctions/website.html:558 -#: websiteFunctions/templates/websiteFunctions/website.html:571 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:598 msgid "Could not fetch current configuration. Error message:" msgstr "无法读取当前配置, 错误信息:" -#: websiteFunctions/templates/websiteFunctions/website.html:567 -#: websiteFunctions/templates/websiteFunctions/website.html:622 +#: websiteFunctions/templates/websiteFunctions/website.html:594 +#: websiteFunctions/templates/websiteFunctions/website.html:649 msgid "Configuration saved. Restart LiteSpeed put them in effect." msgstr "配置已保存, 重启LiteSpeed以生效." -#: websiteFunctions/templates/websiteFunctions/website.html:608 +#: websiteFunctions/templates/websiteFunctions/website.html:635 msgid "Current rewrite rules in the file fetched." msgstr "当前Rewrite rules读取成功." -#: websiteFunctions/templates/websiteFunctions/website.html:613 +#: websiteFunctions/templates/websiteFunctions/website.html:640 msgid "Could not fetch current rewrite rules. Error message:" msgstr "无法读取当前Rewrite rules, 错误信息:" -#: websiteFunctions/templates/websiteFunctions/website.html:626 +#: websiteFunctions/templates/websiteFunctions/website.html:653 msgid "Could not save rewrite rules. Error message:" msgstr "无法保存Rewrite rules, 错误信息:" -#: websiteFunctions/templates/websiteFunctions/website.html:642 +#: websiteFunctions/templates/websiteFunctions/website.html:669 msgid "Save Rewrite Rules" msgstr "保存Rewrite rules" -#: websiteFunctions/templates/websiteFunctions/website.html:665 +#: websiteFunctions/templates/websiteFunctions/website.html:692 msgid "Files" msgstr "文件" -#: websiteFunctions/templates/websiteFunctions/website.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:674 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +#: websiteFunctions/templates/websiteFunctions/website.html:701 msgid "File Manager" msgstr "文件管理" -#: websiteFunctions/templates/websiteFunctions/website.html:713 +#: websiteFunctions/templates/websiteFunctions/website.html:740 msgid "Application Installer" msgstr "应用安装器" -#: websiteFunctions/templates/websiteFunctions/website.html:719 +#: websiteFunctions/templates/websiteFunctions/website.html:746 msgid "Install wordpress with LSCache" msgstr "安装Wordpress和LS Cache" -#: websiteFunctions/templates/websiteFunctions/website.html:721 +#: websiteFunctions/templates/websiteFunctions/website.html:748 msgid "Wordpress with LSCache" msgstr "Wordpress和LS Cache" -#: websiteFunctions/templates/websiteFunctions/website.html:755 +#: websiteFunctions/templates/websiteFunctions/website.html:782 msgid "Installation failed. Error message:" msgstr "安装失败, 错误信息:" -#: websiteFunctions/templates/websiteFunctions/website.html:759 +#: websiteFunctions/templates/websiteFunctions/website.html:786 msgid "Installation successful. To complete the setup visit:" msgstr "安装成功, 请访问网站以完成设置:" +#~ msgid "Reseller" +#~ msgstr "分销商" + #~ msgid "Urdu" #~ msgstr "乌尔都语" diff --git a/locale/ja/LC_MESSAGES/django.mo b/locale/ja/LC_MESSAGES/django.mo index c01a17fd2ec29622e3e2cc4652c321c1c717e2f3..2822c58bcc3799a341ce69e86e8c81b8fd46a27c 100644 GIT binary patch delta 13354 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 Ic2_O*KLwJaWB>pF delta 11719 zcmY+~3w)2||Htur2b+x&~~jITq^hH5$I z`$GsJQW2?y`XO@)>6ap^)&KS0b@~7Qzx(m{?0J2z`@XOHI^Fl?@o?v{_r4#!U6(?9 zmpB|j-i}il-ze=k2Pof-P_5%!spmN5@CU4jzhfmV9c_%lF!Huo1_xmvzKSLAb<}-1 z7=d|M3Xfp0lWGkU>x%wNyRlPbVEQR^MGiqP2LmLkx4iZ*P^a3M7D`jy|Kx= zq4Kd9fqAz62&&zisE!3Tahy6Bi)!cDCd|JcG=&O{^c{P_5%eR!gXQo(s-fad&63o^ z(&UM#rR##4$zGU%L$MUD#t__M&mTf<%2P;_&IK0*?f&3+$D!y%qZ)VtHKH}B3qQAd zHFKPCBW7KAOie9Ma zwXiBS$1?aVhU3c^fpbs~*o=C>e$@5nQ5|@MnpyuuGx8d!`Uc3-x}262SWagsvVonY z*5jzn@(^`H^%iEz8=@YVj8WLbIvLqUPCjY?-&t>9Me<*;Xb(JXz8|p|r1!rug)lBi zM$N=P)N7T2dfg`4`fSvUEJKZO6Kc&rvz|xI%nfU?mgfFQ^rb!qwWk`P29SW2dA`%h zRt!@G`2^J3EJk%G54AMAQ5`ss>cAb;%#>(lrZ^0>xtgLzoQyg@z@8sz&(B1?zKhVM zP4=NZ@uT$t>Oo#fW_O2T74picU7vuOna-%)-y1dM1FgeR56(n&C>wR(e5`g zB<5dh@;w#OyR{j49SkRLf_!_NUZ^FRfqL*<)B~4bRa}Rf(vOfA!8wDP>VRZpY1D%& zpgPp zjZrh$33dH&)SejUvK3jVk6Z+yK)RGjU8m!#T?2$+;PacmoFa={U z!{&LYjvm97_$O*03GIvOT}}rI>hTm*Lpi91)}m(MC~7mFL?672YM=l$Gryqj_kV_I z#xke@wMQ*sPppqau@~kdw>Z~}&NFAx9n5Q&h;=#94>dK}s1Yy5X!M{Sdfa^wXMsK|xde4Hhj0YQ#5DBlrWK!hlZZx|*o# zqEPR7Jl4ci48-xM-98O9lgqII9zZ?#CsfA^(WRc2>1=vj1NFcrs0X&i5;z$3pmfyv z8L0D%u^#TgIQ$+1F}RCasxZ{R!Z8|a*gO?WkoWGwo*hYH2o?SDBr>Z`?XHf~4aZ-YCU2P1&SS*bRs1H+T)Dpdf5txk{;0Dx#H>37|YbOOYbliFx zwZ`XBH{3*x;AiVUs9#dSJpsLNSNK@Z%G z_3;>LM8BeDrVzCR-fV;r3`SjF9W~;HsMjtT%i>_v$j72)G#9nzD^VTtpqAi64AD39 zECn@q-TE791U`H%^uV&H9@j#3q_M4Ujp{%zTc3t{V1_+E8P#qsYPYYo`DUB%!+5>_ z$0;P@-`0fQ=5-p6&r$y#YR&xmn1+H-uVW=t$Kp_Ho@Da@HXnidZTJRiMh;*!UO>&P zUti|G7=;oP^nfy`6BSWCuY!6&G=^e=wHs;*U$kanS@K-eUf76ba0_Zr9K>399@XAI zsOJRrWBwac2e+c#9 zGpGk%K{a?EtD)CmGk_XckvtYFU`Nz-Ly&>HoH4dyI%>p=u;_I`^?Wlf^m3d-sE&0X zY8;N58JBgr)r0ELDb&nfw%*68fReg$fV_M+PV6!jKdM!f}oY1H$4CzL`>jKVlfMKv@XHNtgR z5BFgeynz~t?@MNck*LiUkAB!1TVV&A=U{#E1*jQ3fa=iK=u(5XDQL}#4>Ju$VO{d4 zF&u}XW@aWf#rIGTyn<@zHu|A6oaF<5)cF;tCD@4iQtm;G{DjTV4QKvqQ*o0DO=0i| z^QTokY)$?Ww#R&|gFhpeIu%En^V9Gd@}sEhO1y0TRonyHkgvrgEUs3=2fqLNE*b;A{8mi6HG_{#n9kZ|ju10OrQy7dlFaRH-X41(tU&_j; z`^TWJpJ4M`)b*}q6b4Yp!&odtUUesCtZ^Qukl#g(G;y5y6Kpn~ATPiLxMe(l!efgG zW+3~q8~NX;4y8;qdu1fnC7+7ayPQoFwE2!(Z($SiK)yP93zDn@Q60=eZOY9Uho50H zEVT7avrOI_wM6r=B7Ta|cooZG@Fcwrtba`kn)(*lA6=-azlhzj*6Svph-Jw?#!7e| z)$o06jwL4ZR}i*C&DdP@$BP(GI+E&HxI!U=V6#BdxPhYnPAe@pi0_ z$50Rc71dx#8qxXYsF~CswYu(A>skyUKZR=ViuESCbmKh=S`*)?X02jSo2(P6!7S@4 zY(jnzE8}mdB`Gt_bSN3sp#i9Nb5QNBL49~mU=&_Pbto{K`PbA}$u{rtU@RK3bvtUL zyKR0NtC63xK0-AVHr?#z`l##Ut*NMvjzGO7Gf_*p)VgUpBi9G$AQg#t1J%RoZdX0s1ct)&BP_to+-ZA+*cKo z$va^uoQFDp9yOq!tq<+_LYsG3!u+e@ZcF$#KBggWo>ONjf6w7IoQkEFncr>;@qOiQ znffD`O5SF<+1-m#56naDg?y}uTkQF>sE%F6D17Lm5K5ui3iF;eMNLg>)C_dTSR9EV zxYC~AhFXe)xE8P4`s|fv?H6Gk>i3~KRDinwHb!8f&0XQE%vv_ICZaBEhq|$!tsjKi zR3lIwTxjz=n}3R>slR|4;ca`~YqfbT>snJ#?PenFxST8s8tEL=rrLldajUK0hq~b_ zdW1;Cj?T7uK2|2*kJ`lNZT&seNWIpZ^TDY0qfytjL(Sj-bgAJC3L5bY z9F144-8Y!O`98u0)R)?5mSzp=zRg$*526~rj@9u`tcKxlo4*&5a4`9J)BwK4&iL?c z)?aIu{EnI8F4msb{#cgtL#*Ra51MUViyGN3n}1>RYv@OPA?kkLckL${iJyOCa;Lmc>eY{czk)JfiL^VwbJgHA5+<5VI(kAbuyN+w(tC-b%SNy8fVW#h&O+g^uIo zTBoC^eW7C@F^Ieqj?j5RM{n$4%ch1;uD9d-i@HClD23;Vek$7w7CyO9d*Ee~pKL`N zt2WfgP|DF5@1^;- z$4M%5{9sjiwtm>dL;Y#W?a?1k66XnD^0GuWq2m_nmynJWL($Jy`I$w0$$5XGv98zi zSF2zTFQ!h%nEzLoZ_9i+ojb%#qC0h`&<}sc`PiBGg3t!;LNq3pl20J6P>v-o5K+Xt z#67}Qmmg1#W?VR)7)acpGL3kfau|_mFVgqmTY}I0e;t>|s@R(0))U;MFa5J%u zcyh#1NU}*uo{_+H3$*_0DCoFqRrxyQPQ*u)Q&qunPr1D&$5a*l{La?>Le|rkmr$;2 z%icJb+y^%hC2jqm*uZ6zhDA-$Yn$u8WW7rH4Pp+l$DXf4`3U82P+!LT*oBxzoFn(M z*EJ!pPyB~`FQKojj-RPZCms?yTq`K(x0sGR;(N-!*?b52G0KTVYs%_uFzzOnP+mkl zIWF76O?=tF(z%1d~M2+lqcaxTj#Mpp$vs2&bNC~frH7P!2w$TGbAq&PZK(B zTbEf?r%9?s-Vr~*7Fe11oLEDijXkh6q2oU|g=k871`Z*X6Cs3-VfYmBp4R^;74H)< zRJ@|I9E&NtiE5PpK^>)W3dZ8^L`6A^?jq2mw3|Nd-F z$;Zw@dG0AkY@luwv4wIxzDewO^8QnH8ggPSQJr{&cyf%S{J`crtq1WK7x?jz6Zn{X zDE20vC;AYR?X_Jg|3vu`@inoK*hSrSVqFJ*q*75x==hA7R#Y;7fX<^_ocPDqHR8Gp z_F7xz{6=Am`^(6(y{A)p-BvHd%3K+UcL^`b4{;FDpGYGgO}s;lCI6b}MZ^#~))M=O zrtWevi`{!;4!gHB80D!MTf*BtHqPb#GcMKBqtTUOo@UMaczO0GH1PI3Y7yk;F4bm( zXK$NZ-ku%peZ1XgJACcg(y^VFJE-#mPjHvpex5QteZ4%Ty1o}HsF1$b6WO!W3dPMYWA{%cBA z_v0zmJ&&hM@^{}I6YO3(Gs?4O<{dBhvYdOKMYA9Kcs9-p_i@)*9^&y^nC|6yZP8a= zo&}3X()`Two|;SZ13mZFZS?YNUH`F{J9lHbfNT3V+{~SMecv+A#*LqOxnF z%iY8CLp(|OuN3nf+S<+AGit{L-^$l>b8hA56inY#kiESiJHH@%Z^87O8%uULsU1?? N_jZ-{T-p`n|39PTDLViF diff --git a/locale/ja/LC_MESSAGES/django.po b/locale/ja/LC_MESSAGES/django.po index dca189574..94b23f4fa 100644 --- a/locale/ja/LC_MESSAGES/django.po +++ b/locale/ja/LC_MESSAGES/django.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-10-29 20:47+0500\n" -"PO-Revision-Date: 2017-10-26 02:15+0900\n" +"POT-Creation-Date: 2017-11-02 02:08+0500\n" +"PO-Revision-Date: 2017-10-31 23:38+0900\n" "Last-Translator: @ kazuo210 \n" "Language-Team: LANGUAGE \n" "Language: ja\n" @@ -24,7 +24,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.0.4\n" +"X-Generator: Poedit 1.8.7.1\n" #: CyberCP/settings.py:167 msgid "English" @@ -48,7 +48,7 @@ msgstr "日本語" #: CyberCP/settings.py:172 msgid "Bosnian" -msgstr "" +msgstr "ボスニア語" #: backup/templates/backup/backup.html:3 backup/templates/backup/backup.html:13 #: backup/templates/backup/backup.html:20 @@ -116,7 +116,7 @@ msgstr "バックアップを中止" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: dns/templates/dns/addDeleteDNSRecords.html:129 -#: firewall/templates/firewall/firewall.html:127 +#: firewall/templates/firewall/firewall.html:135 #: ftp/templates/ftp/listFTPAccounts.html:87 #: managePHP/templates/managePHP/installExtensions.html:61 msgid "ID" @@ -139,9 +139,9 @@ msgstr "サイズ" #: 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/firewall.html:140 #: firewall/templates/firewall/secureSSH.html:122 -#: websiteFunctions/templates/websiteFunctions/website.html:424 +#: websiteFunctions/templates/websiteFunctions/website.html:451 msgid "Delete" msgstr "削除" @@ -168,6 +168,7 @@ msgstr "このページでは、バックアップ先を設定できます。 #: dns/templates/dns/addDeleteDNSRecords.html:60 #: dns/templates/dns/createNameServer.html:48 #: dns/templates/dns/createNameServer.html:65 +#: firewall/templates/firewall/firewall.html:138 msgid "IP Address" msgstr "IP アドレス" @@ -179,7 +180,7 @@ msgstr "IP アドレス" #: mailServer/templates/mailServer/changeEmailPassword.html:52 #: mailServer/templates/mailServer/createEmailAccount.html:51 #: userManagment/templates/userManagment/createUser.html:123 -#: userManagment/templates/userManagment/modifyUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:106 msgid "Password" msgstr "パスワード" @@ -224,15 +225,15 @@ msgstr "追加された宛先。" #: mailServer/templates/mailServer/deleteEmailAccount.html:79 #: manageSSL/templates/manageSSL/manageSSL.html:60 #: userManagment/templates/userManagment/createUser.html:162 -#: userManagment/templates/userManagment/modifyUser.html:139 +#: userManagment/templates/userManagment/modifyUser.html:138 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 #: websiteFunctions/templates/websiteFunctions/website.html:157 -#: websiteFunctions/templates/websiteFunctions/website.html:336 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -#: websiteFunctions/templates/websiteFunctions/website.html:508 -#: websiteFunctions/templates/websiteFunctions/website.html:563 -#: websiteFunctions/templates/websiteFunctions/website.html:618 -#: websiteFunctions/templates/websiteFunctions/website.html:765 +#: websiteFunctions/templates/websiteFunctions/website.html:363 +#: websiteFunctions/templates/websiteFunctions/website.html:405 +#: websiteFunctions/templates/websiteFunctions/website.html:535 +#: websiteFunctions/templates/websiteFunctions/website.html:590 +#: websiteFunctions/templates/websiteFunctions/website.html:645 +#: websiteFunctions/templates/websiteFunctions/website.html:792 msgid "Could not connect to server. Please refresh this page." msgstr "サーバーに接続できませんでした。 このページを更新してください。" @@ -297,11 +298,13 @@ 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/homePage.html:268 +#: baseTemplate/templates/baseTemplate/homePage.html:271 +#: baseTemplate/templates/baseTemplate/homePage.html:463 +#: baseTemplate/templates/baseTemplate/homePage.html:466 #: baseTemplate/templates/baseTemplate/index.html:554 #: baseTemplate/templates/baseTemplate/index.html:556 -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Back up" msgstr "バックアップ" @@ -340,68 +343,50 @@ msgid "Restore" msgstr "復元" #: backup/templates/backup/remoteBackups.html:3 -#, fuzzy -#| msgid "Websites Hosted - CyberPanel" msgid "Transfer Websites from Remote Server - CyberPanel" -msgstr "ホストされているWebサイト - Cyber​​Panel" +msgstr "リモートサーバーからWebサイトを転送 - Cyber​​Panel" #: backup/templates/backup/remoteBackups.html:14 #: backup/templates/backup/remoteBackups.html:21 -#, fuzzy -#| msgid "Restore Back up" msgid "Remote Backups" -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 -#, fuzzy -#| msgid "FTP Accounts" msgid "Fetch Accounts" -msgstr "FTP アカウント" +msgstr "アカウントの取得" #: backup/templates/backup/remoteBackups.html:55 msgid "Start Transfer" -msgstr "" +msgstr "転送を開始" #: backup/templates/backup/remoteBackups.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:269 -#, fuzzy -#| msgid "Cancel Backup" +#: websiteFunctions/templates/websiteFunctions/website.html:296 msgid "Cancel" -msgstr "バックアップを中止" +msgstr "キャンセル" #: backup/templates/backup/remoteBackups.html:72 -#, fuzzy -#| msgid "Could not connect. Please refresh this page." msgid "Could not connect, please refresh this page." msgstr "接続できませんでした。このページを更新してください。" #: backup/templates/backup/remoteBackups.html:76 -#, fuzzy -#| msgid "Records successfully fetched for" msgid "Accounts Successfully Fetched from remote server." -msgstr "レコードが取得されました" +msgstr "アカウントはリモートサーバーから取得されました。" #: backup/templates/backup/remoteBackups.html:80 -#, fuzzy -#| msgid " is successfully created." msgid "Backup Process successfully started." -msgstr " 作成されました。" +msgstr "バックアップ処理が開始されました。" #: backup/templates/backup/remoteBackups.html:84 -#, fuzzy -#| msgid "is successfully created." msgid "Backup successfully cancelled." -msgstr "作成されました。" +msgstr "バックアップはキャンセルされました。" #: backup/templates/backup/remoteBackups.html:96 -#, fuzzy -#| msgid "Select Account" msgid "Search Accounts.." -msgstr "アカウントを選択" +msgstr "アカウントを検索。" #: backup/templates/backup/remoteBackups.html:107 #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 @@ -409,9 +394,9 @@ msgid "Website" msgstr "Web サイト" #: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:331 -#: baseTemplate/templates/baseTemplate/index.html:625 -#: baseTemplate/templates/baseTemplate/index.html:627 +#: baseTemplate/templates/baseTemplate/homePage.html:333 +#: baseTemplate/templates/baseTemplate/index.html:626 +#: baseTemplate/templates/baseTemplate/index.html:628 #: managePHP/templates/managePHP/installExtensions.html:62 msgid "PHP" msgstr "PHP" @@ -460,7 +445,7 @@ msgstr "バックアップを選択" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 -#: firewall/templates/firewall/firewall.html:156 +#: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:212 msgid "Error message:" msgstr "エラーメッセージ:" @@ -516,24 +501,28 @@ msgstr "リクエスト処理数" msgid "Total Requests" msgstr "合計リクエスト数" -#: baseTemplate/templates/baseTemplate/homePage.html:173 +#: baseTemplate/templates/baseTemplate/homePage.html:175 +#: baseTemplate/templates/baseTemplate/homePage.html:389 #: userManagment/templates/userManagment/index.html:13 msgid "User Functions" msgstr "ユーザ機能" -#: baseTemplate/templates/baseTemplate/homePage.html:176 +#: baseTemplate/templates/baseTemplate/homePage.html:178 +#: baseTemplate/templates/baseTemplate/homePage.html:392 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:188 +#: baseTemplate/templates/baseTemplate/homePage.html:402 #: websiteFunctions/templates/websiteFunctions/index.html:13 msgid "Website Functions" msgstr "Web サイト機能" -#: baseTemplate/templates/baseTemplate/homePage.html:189 +#: baseTemplate/templates/baseTemplate/homePage.html:191 +#: baseTemplate/templates/baseTemplate/homePage.html:405 #: baseTemplate/templates/baseTemplate/index.html:360 #: baseTemplate/templates/baseTemplate/index.html:444 #: baseTemplate/templates/baseTemplate/index.html:445 @@ -542,11 +531,11 @@ msgstr "Web サイト機能" msgid "Websites" msgstr "Web サイト" -#: baseTemplate/templates/baseTemplate/homePage.html:199 +#: baseTemplate/templates/baseTemplate/homePage.html:201 msgid "Add/Modify Packages" msgstr "パッケージの追加/変更" -#: baseTemplate/templates/baseTemplate/homePage.html:202 +#: baseTemplate/templates/baseTemplate/homePage.html:204 #: baseTemplate/templates/baseTemplate/index.html:366 #: baseTemplate/templates/baseTemplate/index.html:461 #: baseTemplate/templates/baseTemplate/index.html:463 @@ -554,12 +543,14 @@ msgstr "パッケージの追加/変更" msgid "Packages" msgstr "パッケージ" -#: baseTemplate/templates/baseTemplate/homePage.html:223 +#: baseTemplate/templates/baseTemplate/homePage.html:225 +#: baseTemplate/templates/baseTemplate/homePage.html:415 #: databases/templates/databases/index.html:12 msgid "Database Functions" msgstr "データベース機能" -#: baseTemplate/templates/baseTemplate/homePage.html:226 +#: baseTemplate/templates/baseTemplate/homePage.html:228 +#: baseTemplate/templates/baseTemplate/homePage.html:418 #: baseTemplate/templates/baseTemplate/index.html:477 #: baseTemplate/templates/baseTemplate/index.html:478 #: baseTemplate/templates/baseTemplate/index.html:479 @@ -569,23 +560,27 @@ msgstr "データベース機能" msgid "Databases" msgstr "データベース" -#: baseTemplate/templates/baseTemplate/homePage.html:235 +#: baseTemplate/templates/baseTemplate/homePage.html:237 +#: baseTemplate/templates/baseTemplate/homePage.html:438 msgid "Control DNS" msgstr "DNS制御" -#: baseTemplate/templates/baseTemplate/homePage.html:238 +#: baseTemplate/templates/baseTemplate/homePage.html:240 +#: baseTemplate/templates/baseTemplate/homePage.html:441 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:250 +#: baseTemplate/templates/baseTemplate/homePage.html:451 #: ftp/templates/ftp/index.html:12 msgid "FTP Functions" msgstr "FTP 機能" -#: baseTemplate/templates/baseTemplate/homePage.html:251 +#: baseTemplate/templates/baseTemplate/homePage.html:253 +#: baseTemplate/templates/baseTemplate/homePage.html:454 #: baseTemplate/templates/baseTemplate/index.html:378 #: baseTemplate/templates/baseTemplate/index.html:536 #: baseTemplate/templates/baseTemplate/index.html:538 @@ -593,43 +588,45 @@ msgstr "FTP 機能" msgid "FTP" msgstr "FTP" -#: baseTemplate/templates/baseTemplate/homePage.html:278 -#: baseTemplate/templates/baseTemplate/homePage.html:281 +#: baseTemplate/templates/baseTemplate/homePage.html:280 +#: baseTemplate/templates/baseTemplate/homePage.html:283 +#: baseTemplate/templates/baseTemplate/homePage.html:483 +#: baseTemplate/templates/baseTemplate/homePage.html:486 #: packages/templates/packages/createPackage.html:75 #: packages/templates/packages/modifyPackage.html:80 msgid "Emails" msgstr "メール" -#: baseTemplate/templates/baseTemplate/homePage.html:291 -#: baseTemplate/templates/baseTemplate/homePage.html:294 +#: baseTemplate/templates/baseTemplate/homePage.html:293 +#: baseTemplate/templates/baseTemplate/homePage.html:296 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:317 +#: baseTemplate/templates/baseTemplate/homePage.html:320 +#: baseTemplate/templates/baseTemplate/index.html:607 +#: baseTemplate/templates/baseTemplate/index.html:609 +#: baseTemplate/templates/baseTemplate/index.html:642 #: serverStatus/templates/serverStatus/index.html:13 msgid "Server Status" msgstr "サーバーの状態" -#: baseTemplate/templates/baseTemplate/homePage.html:328 +#: baseTemplate/templates/baseTemplate/homePage.html:330 msgid "PHP Configurations" msgstr "PHPの設定" -#: baseTemplate/templates/baseTemplate/homePage.html:340 -#: baseTemplate/templates/baseTemplate/homePage.html:343 -#: baseTemplate/templates/baseTemplate/index.html:643 +#: baseTemplate/templates/baseTemplate/homePage.html:342 +#: baseTemplate/templates/baseTemplate/homePage.html:345 +#: baseTemplate/templates/baseTemplate/index.html:644 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:365 +#: baseTemplate/templates/baseTemplate/homePage.html:368 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:662 msgid "Security" msgstr "セキュリティ" @@ -697,8 +694,8 @@ msgid "Dashboard Quick Menu" msgstr "ダッシュボードクイックメニュー" #: baseTemplate/templates/baseTemplate/index.html:384 -#: baseTemplate/templates/baseTemplate/index.html:590 -#: baseTemplate/templates/baseTemplate/index.html:592 +#: baseTemplate/templates/baseTemplate/index.html:591 +#: baseTemplate/templates/baseTemplate/index.html:593 msgid "Tuning" msgstr "チューニング" @@ -731,7 +728,7 @@ msgstr "新しいユーザーの作成" #: userManagment/templates/userManagment/index.html:52 #: userManagment/templates/userManagment/index.html:54 #: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:120 +#: userManagment/templates/userManagment/modifyUser.html:119 msgid "Modify User" msgstr "ユーザーの変更" @@ -879,7 +876,7 @@ msgstr "メールアカウントの作成" #: mailServer/templates/mailServer/index.html:25 #: mailServer/templates/mailServer/index.html:27 msgid "Create Email" -msgstr "メールアカウントの作成" +msgstr "メールの作成" #: baseTemplate/templates/baseTemplate/index.html:522 #: mailServer/templates/mailServer/deleteEmailAccount.html:12 @@ -892,7 +889,7 @@ msgstr "メールアカウントの削除" #: mailServer/templates/mailServer/index.html:37 #: mailServer/templates/mailServer/index.html:39 msgid "Delete Email" -msgstr "メールアカウントの削除" +msgstr "メールの削除" #: baseTemplate/templates/baseTemplate/index.html:523 #: databases/templates/databases/listDataBases.html:73 @@ -911,8 +908,8 @@ msgstr "Webメール アクセス" #: 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:683 -#: websiteFunctions/templates/websiteFunctions/website.html:685 +#: websiteFunctions/templates/websiteFunctions/website.html:710 +#: websiteFunctions/templates/websiteFunctions/website.html:712 msgid "Create FTP Account" msgstr "FTP アカウントの作成" @@ -921,8 +918,8 @@ msgstr "FTP アカウントの作成" #: 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:695 -#: websiteFunctions/templates/websiteFunctions/website.html:697 +#: websiteFunctions/templates/websiteFunctions/website.html:722 +#: websiteFunctions/templates/websiteFunctions/website.html:724 msgid "Delete FTP Account" msgstr "FTP アカウントの削除" @@ -937,78 +934,84 @@ msgstr "FTP アカウントの一覧" msgid "Add/Delete Destination" msgstr "バックアップ先の追加/削除" -#: baseTemplate/templates/baseTemplate/index.html:573 +#: baseTemplate/templates/baseTemplate/index.html:565 +#, fuzzy +#| msgid "Remote Backups" +msgid "Remote Back ups" +msgstr "リモートバックアップ" + #: baseTemplate/templates/baseTemplate/index.html:574 +#: baseTemplate/templates/baseTemplate/index.html:575 msgid "SSL" msgstr "SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 +#: baseTemplate/templates/baseTemplate/index.html:580 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:581 #: manageSSL/templates/manageSSL/index.html:40 msgid "Hostname SSL" msgstr "ホスト名 SSL" -#: baseTemplate/templates/baseTemplate/index.html:588 +#: baseTemplate/templates/baseTemplate/index.html:589 msgid "Server" msgstr "サーバー" -#: baseTemplate/templates/baseTemplate/index.html:593 +#: baseTemplate/templates/baseTemplate/index.html:594 msgid "NEW" msgstr "新規" -#: baseTemplate/templates/baseTemplate/index.html:598 +#: baseTemplate/templates/baseTemplate/index.html:599 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:600 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:615 #: serverStatus/templates/serverStatus/index.html:25 #: serverStatus/templates/serverStatus/index.html:27 msgid "LiteSpeed Status" msgstr "LiteSpeed の状態" -#: baseTemplate/templates/baseTemplate/index.html:615 +#: baseTemplate/templates/baseTemplate/index.html:616 #: serverStatus/templates/serverStatus/cybercpmainlogfile.html:15 #: serverStatus/templates/serverStatus/index.html:37 #: serverStatus/templates/serverStatus/index.html:39 msgid "CyberPanel Main Log File" msgstr "Cyber​​Panel メインログファイル" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/installExtensions.html:13 msgid "Install PHP Extensions" msgstr "PHP拡張機能のインストール" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/index.html:24 #: managePHP/templates/managePHP/index.html:26 msgid "Install Extensions" msgstr "拡張機能のインストール" -#: baseTemplate/templates/baseTemplate/index.html:633 +#: baseTemplate/templates/baseTemplate/index.html:634 #: managePHP/templates/managePHP/index.html:36 #: managePHP/templates/managePHP/index.html:38 msgid "Edit PHP Configs" msgstr "PHP 設定の編集" -#: baseTemplate/templates/baseTemplate/index.html:648 +#: baseTemplate/templates/baseTemplate/index.html:649 msgid "Access Log" msgstr "アクセスログ" -#: baseTemplate/templates/baseTemplate/index.html:649 +#: baseTemplate/templates/baseTemplate/index.html:650 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1016,35 +1019,35 @@ msgstr "アクセスログ" msgid "Error Logs" msgstr "エラーログ" -#: baseTemplate/templates/baseTemplate/index.html:650 +#: baseTemplate/templates/baseTemplate/index.html:651 #: serverLogs/templates/serverLogs/emailLogs.html:14 #: serverLogs/templates/serverLogs/index.html:49 #: serverLogs/templates/serverLogs/index.html:51 msgid "Email Logs" msgstr "メールログ" -#: baseTemplate/templates/baseTemplate/index.html:650 +#: baseTemplate/templates/baseTemplate/index.html:651 msgid "Email Log" msgstr "メールログ" -#: baseTemplate/templates/baseTemplate/index.html:651 +#: baseTemplate/templates/baseTemplate/index.html:652 #: 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 +#: baseTemplate/templates/baseTemplate/index.html:667 msgid "Firewall Home" msgstr "ファイアウォールホーム" -#: baseTemplate/templates/baseTemplate/index.html:666 +#: baseTemplate/templates/baseTemplate/index.html:667 #: firewall/templates/firewall/index.html:25 #: firewall/templates/firewall/index.html:27 msgid "Firewall" msgstr "ファイアウォール" -#: baseTemplate/templates/baseTemplate/index.html:667 +#: baseTemplate/templates/baseTemplate/index.html:668 #: firewall/templates/firewall/index.html:36 #: firewall/templates/firewall/index.html:38 #: firewall/templates/firewall/secureSSH.html:13 @@ -1178,17 +1181,15 @@ msgid "Records successfully fetched for" msgstr "レコードが取得されました" #: databases/templates/databases/listDataBases.html:50 -#, fuzzy -#| msgid "Password changed for" msgid "Password changed for: " -msgstr "パスワードが変更されました" +msgstr "パスワードを変更: " #: databases/templates/databases/listDataBases.html:54 msgid "Cannot change password for " msgstr "パスワードを変更できません " #: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:166 +#: firewall/templates/firewall/firewall.html:176 #: ftp/templates/ftp/listFTPAccounts.html:59 msgid "Could Not Connect to server. Please refresh this page" msgstr "サーバーに接続できませんでした。 このページを更新してください" @@ -1224,7 +1225,7 @@ msgstr "レコードを追加" #: dns/templates/dns/addDeleteDNSRecords.html:53 #: dns/templates/dns/addDeleteDNSRecords.html:131 -#: firewall/templates/firewall/firewall.html:128 +#: firewall/templates/firewall/firewall.html:136 #: serverStatus/templates/serverStatus/litespeedStatus.html:40 msgid "Name" msgstr "名称" @@ -1242,7 +1243,7 @@ msgstr "優先度" #: dns/templates/dns/createDNSZone.html:27 #: dns/templates/dns/createNameServer.html:27 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 -#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:290 msgid "Domain Name" msgstr "ドメイン名" @@ -1255,7 +1256,7 @@ msgid "Text" msgstr "テキスト" #: dns/templates/dns/addDeleteDNSRecords.html:111 -#: firewall/templates/firewall/firewall.html:109 +#: firewall/templates/firewall/firewall.html:117 msgid "Add" msgstr "追加" @@ -1444,15 +1445,15 @@ msgstr "操作が失敗しました。エラーメッセージ:" msgid "Action successful." msgstr "操作は終了しました。" -#: firewall/templates/firewall/firewall.html:129 +#: firewall/templates/firewall/firewall.html:137 msgid "Protocol" msgstr "プロトコル" -#: firewall/templates/firewall/firewall.html:130 +#: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "ポート" -#: firewall/templates/firewall/firewall.html:162 +#: firewall/templates/firewall/firewall.html:172 msgid "Rule successfully added." msgstr "ルールが追加されました。" @@ -1473,10 +1474,8 @@ msgid "Secure SSH - CyberPanel" msgstr "SSH のセキュリティ - Cyber​​Panel" #: firewall/templates/firewall/secureSSH.html:14 -#, fuzzy -#| msgid "SSH Configurations Saved." msgid "Secure or harden SSH Configurations." -msgstr "SSH の設定が保存されました。" +msgstr "SSHの設定をより安全にするか強化します。" #: firewall/templates/firewall/secureSSH.html:28 #: managePHP/templates/managePHP/editPHPConfig.html:29 @@ -1523,8 +1522,8 @@ msgstr "キーを追加" #: firewall/templates/firewall/secureSSH.html:158 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:527 -#: websiteFunctions/templates/websiteFunctions/website.html:587 +#: websiteFunctions/templates/websiteFunctions/website.html:554 +#: websiteFunctions/templates/websiteFunctions/website.html:614 msgid "Save" msgstr "保存" @@ -1733,7 +1732,7 @@ msgstr "高度" #: tuning/templates/tuning/phpTuning.html:28 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:310 msgid "Select PHP" msgstr "PHP の選択" @@ -1827,7 +1826,7 @@ msgstr "前に戻る" #: managePHP/templates/managePHP/installExtensions.html:104 #: tuning/templates/tuning/phpTuning.html:114 -#: userManagment/templates/userManagment/modifyUser.html:144 +#: userManagment/templates/userManagment/modifyUser.html:143 msgid "Cannot fetch details. Error message:" msgstr "詳細を取得できません。エラーメッセージ:" @@ -1919,16 +1918,12 @@ msgstr "パッケージ名" #: packages/templates/packages/createPackage.html:35 #: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:223 -#, fuzzy -#| msgid "Domain Name" +#: websiteFunctions/templates/websiteFunctions/website.html:250 msgid "Domains" -msgstr "ドメイン名" +msgstr "ドメイン" #: packages/templates/packages/createPackage.html:39 #: packages/templates/packages/modifyPackage.html:44 -#, fuzzy -#| msgid "( 0 = Unlimited )" msgid "(0 = Unlimited)" msgstr "( 0 = 無制限 )" @@ -2231,7 +2226,7 @@ msgstr "無効化" #: tuning/templates/tuning/liteSpeedTuning.html:74 #: tuning/templates/tuning/phpTuning.html:97 -#: userManagment/templates/userManagment/modifyUser.html:78 +#: userManagment/templates/userManagment/modifyUser.html:77 msgid "Currently:" msgstr "現在:" @@ -2350,18 +2345,18 @@ msgid "Account Type" msgstr "アカウント種別" #: userManagment/templates/userManagment/createUser.html:67 -#: userManagment/templates/userManagment/modifyUser.html:73 -msgid "Reseller" -msgstr "代理店" +#: userManagment/templates/userManagment/modifyUser.html:72 +msgid "Admin" +msgstr "管理者" #: userManagment/templates/userManagment/createUser.html:68 #: userManagment/templates/userManagment/createUser.html:79 -#: userManagment/templates/userManagment/modifyUser.html:74 +#: userManagment/templates/userManagment/modifyUser.html:73 msgid "Normal User" msgstr "通常のユーザー" #: userManagment/templates/userManagment/createUser.html:92 -#: userManagment/templates/userManagment/modifyUser.html:89 +#: userManagment/templates/userManagment/modifyUser.html:88 #: userManagment/templates/userManagment/userProfile.html:67 #: userManagment/templates/userManagment/userProfile.html:74 msgid "User Accounts Limit" @@ -2373,7 +2368,7 @@ msgid "Only Numbers" msgstr "数字のみ" #: userManagment/templates/userManagment/createUser.html:103 -#: userManagment/templates/userManagment/modifyUser.html:99 +#: userManagment/templates/userManagment/modifyUser.html:98 #: userManagment/templates/userManagment/userProfile.html:82 msgid "Websites Limit" msgstr "Web サイトの制限" @@ -2398,7 +2393,7 @@ msgid "Create User" msgstr "ユーザーを作成" #: userManagment/templates/userManagment/createUser.html:154 -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid "Account with username:" msgstr "ユーザー名を持つアカウント:" @@ -2452,19 +2447,15 @@ msgstr "このページで既存のユーザー設定を変更します。" msgid "Select Account" msgstr "アカウントを選択" -#: userManagment/templates/userManagment/modifyUser.html:72 -msgid "Admin" -msgstr "管理者" - -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid " is successfully modified." msgstr " 更新されました。" -#: userManagment/templates/userManagment/modifyUser.html:135 +#: userManagment/templates/userManagment/modifyUser.html:134 msgid "Cannot modify user. Error message:" msgstr "ユーザーを変更できません。エラー メッセージ:" -#: userManagment/templates/userManagment/modifyUser.html:148 +#: userManagment/templates/userManagment/modifyUser.html:147 msgid "Details fetched." msgstr "詳細が取得されました。" @@ -2515,19 +2506,19 @@ msgid "Select Owner" msgstr "所有者を選択" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:294 +#: websiteFunctions/templates/websiteFunctions/website.html:305 msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" msgstr "" "無効なドメイン(注: 'http' または 'https' を追加する必要はありません)" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:84 -#: websiteFunctions/templates/websiteFunctions/website.html:299 +#: websiteFunctions/templates/websiteFunctions/website.html:326 msgid "Additional Features" msgstr "その他の機能" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:91 -#: websiteFunctions/templates/websiteFunctions/website.html:306 +#: websiteFunctions/templates/websiteFunctions/website.html:333 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." @@ -2536,17 +2527,17 @@ msgstr "" "署名された SSL が発行されます。後で独自の SSL を追加できます。" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:113 -#: websiteFunctions/templates/websiteFunctions/website.html:328 +#: websiteFunctions/templates/websiteFunctions/website.html:355 msgid "Cannot create website. Error message:" msgstr "Web サイトを作成できません。エラーメッセージ:" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid "Website with domain" msgstr "ドメインを持つ Web サイト" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid " is Successfully Created" msgstr " 作成されました" @@ -2686,169 +2677,156 @@ msgstr "" "い。 エラーメッセージ:" #: websiteFunctions/templates/websiteFunctions/website.html:173 +#: websiteFunctions/templates/websiteFunctions/website.html:212 msgid "Next" msgstr "次へ" #: websiteFunctions/templates/websiteFunctions/website.html:174 +#: websiteFunctions/templates/websiteFunctions/website.html:213 msgid "Previous" msgstr "前へ" -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:232 -#, fuzzy -#| msgid "Add Destination" +#: websiteFunctions/templates/websiteFunctions/website.html:257 +#: websiteFunctions/templates/websiteFunctions/website.html:259 msgid "Add Domains" -msgstr "バックアップ先の追加" +msgstr "ドメインの追加" -#: websiteFunctions/templates/websiteFunctions/website.html:242 -#: websiteFunctions/templates/websiteFunctions/website.html:244 -#, fuzzy -#| msgid "Select Domain" +#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:271 msgid "List Domains" -msgstr "ドメインタイプの選択" +msgstr "ドメインの一覧" -#: websiteFunctions/templates/websiteFunctions/website.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:733 +#: websiteFunctions/templates/websiteFunctions/website.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:760 msgid "Path" msgstr "パス" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "This path is relative to: " -msgstr "" +msgstr "このパスからの相対: " -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#, fuzzy -#| msgid "Leave empty to select default home directory." +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "Leave empty to set default." -msgstr "デフォルトのホームディレクトリを選択するには、空のままにします。" +msgstr "デフォルトを設定するには、空のままにします。" -#: websiteFunctions/templates/websiteFunctions/website.html:317 -#, fuzzy -#| msgid "Create Email" +#: websiteFunctions/templates/websiteFunctions/website.html:344 msgid "Create Domain" -msgstr "メールアカウントの作成" +msgstr "ドメインの作成" -#: websiteFunctions/templates/websiteFunctions/website.html:360 -#, fuzzy -#| msgid "Version Management" +#: websiteFunctions/templates/websiteFunctions/website.html:387 msgid "PHP Version Changed to:" -msgstr "バージョン管理" - -#: websiteFunctions/templates/websiteFunctions/website.html:364 -#, fuzzy -#| msgid "Delete" -msgid "Deleted:" -msgstr "削除" - -#: websiteFunctions/templates/websiteFunctions/website.html:368 -#, fuzzy -#| msgid "SSL Issued for" -msgid "SSL Issued:" -msgstr "SSLが発行されました" +msgstr "PHP のバージョンを変更:" #: websiteFunctions/templates/websiteFunctions/website.html:391 +msgid "Deleted:" +msgstr "削除済み:" + +#: websiteFunctions/templates/websiteFunctions/website.html:395 +msgid "SSL Issued:" +msgstr "SSLの発行:" + +#: websiteFunctions/templates/websiteFunctions/website.html:418 msgid "Close" -msgstr "" +msgstr "閉じる" -#: websiteFunctions/templates/websiteFunctions/website.html:423 -#, fuzzy -#| msgid "Issue SSL" +#: websiteFunctions/templates/websiteFunctions/website.html:450 msgid "Issue" -msgstr "SSLを発行する" +msgstr "発行" -#: websiteFunctions/templates/websiteFunctions/website.html:451 +#: websiteFunctions/templates/websiteFunctions/website.html:478 msgid "Configurations" msgstr "設定" -#: websiteFunctions/templates/websiteFunctions/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:484 msgid "Edit Virtual Host Main Configurations" msgstr "仮想ホストのメイン設定の編集" -#: websiteFunctions/templates/websiteFunctions/website.html:459 +#: websiteFunctions/templates/websiteFunctions/website.html:486 msgid "Edit vHost Main Configurations" msgstr "メイン vHost 設定の編集" -#: websiteFunctions/templates/websiteFunctions/website.html:469 -#: websiteFunctions/templates/websiteFunctions/website.html:471 +#: websiteFunctions/templates/websiteFunctions/website.html:496 +#: websiteFunctions/templates/websiteFunctions/website.html:498 msgid "Add Rewrite Rules (.htaccess)" msgstr "Rewrite ルールを追加 (.htaccess)" -#: websiteFunctions/templates/websiteFunctions/website.html:481 +#: websiteFunctions/templates/websiteFunctions/website.html:508 msgid "Add Your Own SSL" msgstr "独自のSSLを追加" -#: websiteFunctions/templates/websiteFunctions/website.html:483 +#: websiteFunctions/templates/websiteFunctions/website.html:510 msgid "Add SSL" msgstr "SSL を追加" -#: websiteFunctions/templates/websiteFunctions/website.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:525 msgid "SSL Saved" msgstr "SSL を保存しました" -#: websiteFunctions/templates/websiteFunctions/website.html:503 +#: websiteFunctions/templates/websiteFunctions/website.html:530 msgid "Could not save SSL. Error message:" msgstr "SSL を保存できませんでした。エラー メッセージ:" -#: websiteFunctions/templates/websiteFunctions/website.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:580 msgid "Current configuration in the file fetched." msgstr "取得されたファイル内にある現在の設定。" -#: websiteFunctions/templates/websiteFunctions/website.html:558 -#: websiteFunctions/templates/websiteFunctions/website.html:571 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:598 msgid "Could not fetch current configuration. Error message:" msgstr "現在の設定を取得できませんでした。エラー メッセージ:" -#: websiteFunctions/templates/websiteFunctions/website.html:567 -#: websiteFunctions/templates/websiteFunctions/website.html:622 +#: websiteFunctions/templates/websiteFunctions/website.html:594 +#: websiteFunctions/templates/websiteFunctions/website.html:649 msgid "Configuration saved. Restart LiteSpeed put them in effect." msgstr "設定が保存されました。 LiteSpeed を再起動して有効にします。" -#: websiteFunctions/templates/websiteFunctions/website.html:608 +#: websiteFunctions/templates/websiteFunctions/website.html:635 msgid "Current rewrite rules in the file fetched." msgstr "取得されたファイル内にある現在の rewrite ルール。" -#: websiteFunctions/templates/websiteFunctions/website.html:613 +#: websiteFunctions/templates/websiteFunctions/website.html:640 msgid "Could not fetch current rewrite rules. Error message:" msgstr "現在の rewrite ルールを取得できませんでした。エラー メッセージ:" -#: websiteFunctions/templates/websiteFunctions/website.html:626 +#: websiteFunctions/templates/websiteFunctions/website.html:653 msgid "Could not save rewrite rules. Error message:" msgstr "rewrite ルールを保存できませんでした。エラー メッセージ:" -#: websiteFunctions/templates/websiteFunctions/website.html:642 +#: websiteFunctions/templates/websiteFunctions/website.html:669 msgid "Save Rewrite Rules" msgstr "Rewrite ルールを保存" -#: websiteFunctions/templates/websiteFunctions/website.html:665 +#: websiteFunctions/templates/websiteFunctions/website.html:692 msgid "Files" msgstr "ファイル" -#: websiteFunctions/templates/websiteFunctions/website.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:674 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +#: websiteFunctions/templates/websiteFunctions/website.html:701 msgid "File Manager" msgstr "ファイル 管理" -#: websiteFunctions/templates/websiteFunctions/website.html:713 +#: websiteFunctions/templates/websiteFunctions/website.html:740 msgid "Application Installer" msgstr "アプリケーションインストーラー" -#: websiteFunctions/templates/websiteFunctions/website.html:719 -#, fuzzy -#| msgid "Wordpress with LSCache" +#: websiteFunctions/templates/websiteFunctions/website.html:746 msgid "Install wordpress with LSCache" -msgstr "Wordpress の LSCache" +msgstr "LSCache で Wordpress をインストールする" -#: websiteFunctions/templates/websiteFunctions/website.html:721 +#: websiteFunctions/templates/websiteFunctions/website.html:748 msgid "Wordpress with LSCache" msgstr "Wordpress の LSCache" -#: websiteFunctions/templates/websiteFunctions/website.html:755 +#: websiteFunctions/templates/websiteFunctions/website.html:782 msgid "Installation failed. Error message:" msgstr "インストールに失敗しました。エラー メッセージ:" -#: websiteFunctions/templates/websiteFunctions/website.html:759 +#: websiteFunctions/templates/websiteFunctions/website.html:786 msgid "Installation successful. To complete the setup visit:" msgstr "インストールに成功しました。 セットアップを完了するには:" +#~ msgid "Reseller" +#~ msgstr "代理店" + #~ msgid "Urdu" #~ msgstr "ウルドゥー語" diff --git a/locale/pt/LC_MESSAGES/django.mo b/locale/pt/LC_MESSAGES/django.mo index 9cb54d2200ea2a5cd5a77db17b9dc3a5d44f811c..6213d777a2b9591011fb9da750fda03f2d42f003 100644 GIT binary patch delta 9588 zcmYk>2Xs}%zQ^$$0wf`X5JE^GKu$vQ(8kR~l6H35v;!c>2BT?5KMmNjn+_Vj)lg!N0FoyPisE%gYc$@VLR0f{d*p=)! z(ZnrL*AGWMU@^wxK2&DE!#?PhVy^F(LjK8uGt)K{pyEsDLhn>_VKl1aEY!e8U=3Vu z&mTrT=sIeqzG>!sG?paJMlDenR6jWwh>Oz5e_1N)Y0%nyfDLdzmcfTu4xQR&ZG*86 zVI*qPcE`Fn9(CVN)C7J+T^G#%$SnS60=lss{)$bpnVY*cq8X?g-$gz6B5H&;Q4e}# z;qEgub z{c*T$pM+Y=*+_Dn9mqCtzPFZ1H+!Qos-GNGhVxJloR7TG&KjfJIZ1_Oa~_~(5Jeut zFcG!Ztx)g#NDRPStb}e<2G*e7l3l2`VIL|3pP({u0d?OatJBbAqD+yje*zWV*ba+h zH`Jzi2{qyYs0@v@@e&(vz|yoIK@H>#YAL?QqCJyg1`v$OL>h);GgL;=p11s|YZ&qJuaam%&`H8LGkK|LrAwRtnJ3N}Zjd;n@<<51_Pp)x$nx)j|S*;*VO6|=>d0wk_JA)|APh&no~f9K z-E2GyHL&eS_MK~}jJT`5U{2IR&2Rv!qY)T|Gf zmBETUMeXsZ_6#hEy|6g;M-6Z=7XAGnM@5@yHtPLciMp@=b>V*02kAJ*;8oO86l-NR zZ2(3Q$6yj>q1HAJHPCsefvvahLOt(O4A3@kuj z;x|zb-iX>0?_eqX2=%=_1#w*3zJ5I;s`-zsay!;v9XFyuo2e!C!``U& zBdAa7NmPozLCyF%szdK=liFa^{V}NX4N>y4!A?m}i z3bhvs(1qtvGx-@y;#1Vx{*AgnsJ&U!N~r7NPy4aM1QK;+YxT#d6vIKR* zc2tK4t;bL){~QDG->3n8hh^}0OhBIwW&(9k8EAr~u{mnyolw`mf_gi~q23PnOe&h` zCRA#UqSo>ZY9KdIslAKp$mwW03bt0mK$=rf=QB|Q?SdM>0NXwq%Mwqw?H=TLZs%<( zx^X9Jgh$aI&)N8jjqf18Rh%c-5NmZZ4#iaBE!Z2sMlDh8&ZeJ+sFb%t4eVu921gae ztp7aQuo~-gVh<`Kg;)!Hctw=b+E@b9Q4eTh+gqXr-WK(MUZ_nw)H)57!R6L%7)*Q= zef0icpb~`Np!UK&td1r5Zq~*GoQnf+3Kn7_4(ZBg8dqU^^zO!gBVcFThwow<_U>-p z|D~vb7NVB+PjqYTynC1#1*0yggqm?2YELAh-i~xEhcBQ8+zpkHp{NIqvhgMiCf3s0TL22<(K>n2YLo6;{N}sJ|H>qh714 zs2ScuP4GVIzQ0ieug2$4*Vpbv{x#AUY0wQrQ19s&)QA^hb6kg7^BbtYj(6<&e=v`@ z%u5Uo=VDp>2KC@V)B~TP`U_x(Mq*{u1RA@kgi&dWq4)~w!l|g4FR<}js2ko#y&Z>8 z13!h?UOW)X6W8c#`e}sfw<}h}QCJD*q6V}X^&Iy;TRDN@G+ab|P<}yOSf!sa3H8Cq zM9r)pYPXNZ2%Ls4T#p*qQPdh=Kn>t3s=ueG`+Z+7nxNYWqoTEmM|Ic{m5IKnZ~jD7 z2WwF6A7T=oMGfdL)XXaNH}}^;J@^HzkJ&b!jk<0rYUVq!0{hQ7L?wcT^QZ?tM6Gqm z05g-yr~xEnRcwP=<6)>Jc@>Mkp%cy>T0r+K{21>PIRQ*xcO~BST4Yiq0p?3cz^v6QX#NSW@P9I+ML)jUE zZHafF?teO*{HIfCGQ#}0%)=$bA0ls*(|n})v~I+j#1Bv@4IgFJz7y&-?TgwQxu}6I zwdc2B2yp>c!_(-8cTx8}aZ`z+;xpQ8s(93{&OoK87pjBTQ5~#8W#}N5#w)1J`6HG^ zXN=i&L8t*opeEP`lW`_$3HDjtx2gEkP%+os7-LPt8nkDkI?BODxDs{!MU2I3sLkjz z*8EV(z_P?mQ4{He+V!JR_btS7_$Kl?x}BX=)X^!_On*jwh>DLhpGp^M=FPAS4#MI% z9!p{#mc!Rknem|Z!d{HT&oBV*qCVZfqcR>iUQ5OLr%`dy& zy^Ra4f1x@Em}rbgJva-Ka6D=vTQC9lU`xD?%2@0qb3PG^{`)_JiY{!6nsFX#(=0&E z;3VqCa~O(W+4g&=0X{)x%xkiFZ7X9_;w)5u^HEE*&c?gYoA}eoxak_L_VHfrX- zqGnh!&-?(1#xUX})J$8WIv$5g=`2)=7o+aqgv#Vzd;Vh#AwGqA&Q;97yLseaH^#oo z*9{w@mZA_fM8o=ka-J8s5>GUsH+Wies{ft0OXew5~-Kd$L zMi+jI@Tu)O+2^+7311PNc{pCE0{J{~qc)@d;{=+(exZ zc*6`N6cdOOF%^4b(fhxI3L|kgTMt_=qEb|d;rIt?!YVU%cn2??AvDn*rqSmQxdz zp?p+^wqhI}M<2Y8>hD+7gMH_k*U*L9q;==A{z^p#4H`%b)O+3$_26MPo{U<{WvI=x z7WKeg*3U7L_%`Y~zj>y=U{rrqQ3I-nnt2oS!w&Pvzh1ANG$=(msFY2`D!3MX@gV8} z$57YZLJjyS`k~i+lX8Dle}Sm`T{dov8N?k>n|dK?K>2Pe+Eg1+ugiYxIaCI2p=SEn z8o0nbI3AVKx;Ac)nrTnlJ{C2Q`KSS}wddbQEy*cVCf!%;1@}=M{(~Aw=t7gKMASeU zqaKir>TodXlR6pI;bK&3H)2yPz{dCpwMkRh;W8INR@{8{lDk{wXFAS6E_F+S1w{OVZvAwb}Zh20jo=;{+`F_rK{>l!}$8rPyvg zYQ2bB<2$HgHPma|b-DR=#O_%1AK}VF=(aPobi}KoP@fr zKf1NsM^aIT3sGyl8KdzCYQ{ILPp~<$&nlC`cBs_$L}joax^NsO;0i2-$58#9L%l_h zP`khUYWx0ICU5E>24gWD%VU46h7+*@=A&l18#VBQr~zKaZdiy~+h%W?&DjA1i3cJ3 z&6$9G&^zCp@1IZpb-^SWf^ZI&!F-IuZKw{VG?ShG+Q z>xN#aV;heT_d6*&k&y0d5*@^OHc+-KZJ3((~}<&-e(QbzlfTkj=k6k z&lg4fRwRz1ylUeguzM{5wWe-Ki$DSZpL%%$tUX;t8uCABT=h$;A z@e|5KuKOS4PgK!ftVjI?-ORCwx(@w&#Cp$9uGoN2shu*7&U{am$h5c|S}IaLqUd-; zS!U~-@m5hQKa@Oqk>Pb-qoo$*CarvzoGa9MYn<0n$6ZQy>fhOzH_ut(ITIQ0UPVhs z%3)gK?b$olxwzZbFQUG$I=--Ns*j?+4nI`Dv73@yROA07=A1Y6=ah-m|HRRh+mx?} z*&v>A)ndFBc=D@-C%j8bdrBOoCq>7Fw^RY{|5 zHvZxXimDfMn@HQWC#5sxp{Hk5Y?c4es$(o3z#|x7+Xi{oN5%SGBKnLo`JQu8;c-ie zZcyH!d`=1BOf;TA9fgzt%1}>Gba22?&fKK5qve7pB|0r&2hn7Tj_sb@=!PNpZ1e^# zpA@x|3eTs}X@0{wGnSTPp1-3*V}=pwebk|E{vJw-0*)=58%){gNso#3`nRWlOnA&m z;$55@kN^MpOzpPqyk}!fQpjwg)s)^`rY}NU>LWb=iHY*M>hY@{;WgS5S3ROrA+7g0 z+njQmx{i*NK}9uI-L}1DPe9+XiXxjgaa{>@*d?d@pXLLlNB3YVmZ+_o?)@E zL3gP=phR#^$0^Uo*wFN|w8Rsw#Z45x-p-r&51zvy$_YwuN@q$Y?K)odJd6#GIY^6+ zf!Knw%!EZBc3X9>c~WYGme|VK1D@;}q5Y>(t7A`wQ6EXENZg)s<-a%KaoT54hEO6Y z#VIbz8P08?jG^o!)}hbt4$6MwZJv`g(&~(}XFj4;e_sB3ETp{yC6_YEUZZoRsn7Ey z#D(@>OznRuZ_^rUulO3L=rWG`)Ze3|Qhy02VKUC7{H6;y_8Xjav`we}BkDLxd1voC jaqj573GG7yOQj?vr@E3;8zk4?+pbT^T6_DCU5x+)?zipXZADa5s|y8rJlGkebeJ!kea&)j>bJTvzO_tyR@&mXAby;8$( zxx=r*$8l=o_AtlUP{ncDCaBeMPNX|d6rRKwyo9lM&swd4{6RDT;$3pj)|7~i=-C7gzGOu}C<65|^go1#B)7YxMi$SqDDYQSeu8JdS$z*^Mv zTTufYLrvs!)crr(_P;QU@tv5)CWZAeh`0-CMLDQ}3vmbzxA7^gM*JS?{!g(cUcprS z5$j=G6SJUp7*9MDb8sf=zH{hh8=VT9%PjJhw0|B?Cp&qQ2;z0jYBI%1xeie}`Z9()5e@VBTLR-gu|(!#_E zSe>{j*2K1$h`FdUF#&7fGnjx&F#`8sT|9*zypHPM>)X-{5Q%yq12uuZs8kNYV4QB- z=cD#=1(GD^E#x>j-&^apGH0VVs-J17440t>T#dZZ&Q_z>xk!a=tIVHPkVPJ2usv$8 zA4R?IGf`VmigCCEm4U6Ox8ykLZ8(j}z&}t6x{i9TN*iN1Did`pW&hhz(Sw804@aU7 z%~Plum!P&_wvAu5@h;R>oJURM3)EJ8kD5SuTQh+qR3^G$Jm#S?ItF7H-|qWD&-}ph0Q@-UyRD|a_f5ZYG&K0Xhv_L z9z285cnS4h|A5+xn(fVsTcc9=5N6;=)E2Bn4Y&?9(Cerz*o(^KC&)2zuA?#>-+}jE zm3ke_fa$22c0zT~-M06`1me-y7#E=?{uZj^_iX$H>a2W+ad-!{MO8bRy|0OCuZQ}S zx9jLNABG2Ms6)eG)C1E{XJNjL7ok?R3boQ#P#tW+DBO#h@LA*)cP^kZ8PrLC;usY5 z{A$z!H=!oJ-AhFS9YMXPCs7l)fK~9C^;^^cYiYBr3H@sOPg$*L$L#?`zFRO?Vh;!V_&gD~J5+MwbSi;i*8Cv(Up@fSh`#7`4^&y;OALdW^-*s0ZFg zb^M9-D^%)lU2=gZen+L)x3B3a7S&NBYa0wB?qRPNpeFh>Y68=3`vMFnUSrz5&UPvq@DOT- z@1Q!qguz&D;|d%5ZnK`mNWK4; zsOSvb#t8fobr$^jZl+=aHpd5X0Zzy1=-1zT<7eS$;$7GqYY%W7x^SMt19%*>aN?up zJFo>cQNMxgzxFngiuSHHYDJAuH)Nq!+!?h+51|fM9@fCYs0oinWuz1}(0m&o#z^9m zs55X8)$eswX73Lq|LQP=uZ|`XjSbL)>aeFZ7d7Ccn1IEYj0;g6@4{F-g8JL>87iYc zq5Az3wZH&AgLOCz(&G@7iJ0xBq7^)fF<69p?Pj8GT#j1#CL6zry8jI7?YMxN z_*KmDVL+@&-03mX&j3`vV=xxyV;pWkO~`wMiU#`7dKu%1@1Q;?fkVuV4_F^YeJ=`7 zE1QBk?F%pgSD**qKuzotYKw29Ch!w#;IPLlpZ7Y6RJ6iO)ZTPObvO!@iOHyM{}NOO z`%vv4U{m}jYC=&%&C0S+&-X?RJQ!QzNE^S5%D@&3)%*Vr7478(Ou$>H0jmu&d))-J zl5Erjx?^1&j@skds4a1^@>7ma5pPBv;+n(FgyK;B)W_P`7Bd*%$yWszVskuM$^@FUdyz9Y=P4_cx!Qe@*7tS2y=_B+@J>y0$_L9Yg$K}8+!uzrmV ziG!aoe~w$A?puj1@GR5sZTZxs1Yp>oh( zxPn!Q!-~yTM5AWh0;8}9mBMML`<};#aRuryUPYb$A5d?HAN$Y=!%-8?!_GJhd*Z35 z$iF%W8_j=4;XrJS%Ww&PfV@#o;nU{R`W7}I4jN-p+8nDB7o!gGWYpPMh??jYd;KVC z0qm6$z48bHCJg7s}6?LlnqcSuB)xj!M2fI**^%K+tDo}^>zo_S9$C*Rd z05##3s09wk3|xoW0`G^m;*2*bYlb0QXm9O>^@$5m9nHaZxD$i%4yNI+sKe+fG5=8M zkKx4msD%`xPW=MZbFX3z#&`Bm(fjxgs-vr@l~$c#K16jek+>CV<%2L3pFuxdi~+a| z>Cjn)%FK4uSvZe+{u|W7eE()%_XteV`(K|*Bo}(22Ome>Sc;n15{$sDsJ%Ucn!s16 zFXb)NiUKB@l-59Hsw=8}Eb6dMM~yQF192tRVSHyj6%B9<^}t7{!|^pLh2^L{{>8?A zlT3RQDz&NBuBd^BVN+a;TF6msjOXw{{0)_{j+4p1Zg_}_R@5JLV-adX%TR}A6KVxl zP!E=4G~TuC{!`2ZLr@uu!$z2m9dQ_{zgJLObil@Er;vYN8os1KdvpagA^k1Y%0p2r zOu%Z`4rB0P)Jlhqb9fvHNiEgOzrYg(W!qQv#4`;>oBLy^SsK0xBcHGfhXeQ2k`02FOQ$d>S?J38(?*q0Z6B;JW0JcXLT4clIu3~K8#F%us_^)nZ>pyjAcy@#6EHT2-Wk$$~S z)GTwD8eknRbVj|`k6TBeW?YO~$z;@?FT}dI7PTdZQP)qSz7wCL&d7gI*HcT)L^4o^ z{2^?n_kSW4&1^I3R3EW^YQ2NXkl$?czSlryqzQVk3u@pZtc{bg9ln6d$S0@;`OPr~ zp)wPSfsF5TrlJ+~#Kl;MBk?wB@AIBD|DIomLy7O>WBABi<6i7Q95K(NJ{Og-q3DZa zP?;)0jk6TB&{xo_y*f-qhv^&!;Af~6UB*NRY&fc)!}_MssV`=ciE80tMAg&KIajhCYKaw}@f_M-+oYrTPq z#7>#HuO6zuMyUQ;*tjohVuQ-azcMhKh9I1Pdd+5{QuRD4b?Z@w^Ed|LWz<0BsQUsJ znt|dlh&Tn6`lhJ-Vm|KbeM#iNE=k9@=y~Qh8kcz zs>6k-Jzb0HZ!hZp)7TL&VtcH`3D;rmZ}d9LsTAu5RBAguZ)VyZm9hdCpF>S( z8|rm?8(ZU5dp&N6`RmsjmC<5r2?h{PL!G%&jL`c(pGtKaR-p!Z4V8&QsIBdX*O!{LmVJK>XaTtr)sKeO@y_r-Vp`sh- zqE7o#REN7!d;BgY<26)<{8t!buq$yxR0hYPQacls!8z!`mDm^$q7G|0s=xay$iH5r zTI5N4)eRy-H$;cBdfM^X2GikkRk)CB*)0T}k8nb=5-BA$R@ScV)o zXVr`3zmQ7WDs#hJ)D3G;r+OPI^+z!Y&!bj)52NuDJ>K1bDRnL3=c((b|6k%I_X|&2$lKJ;m`3M0HzYAD{V7^vDTgTfRZy1M z`X;?Zc!eke#OSTdCuS6Lx~N&D{1LVIZR7K zd-bNZ4ENajr>MUu`u)SUsXmtaTHLRI-)>4qWsQHtam|v`(ksrREKQUAvMxL#zPe-e!$`kA7i-jpob=HWfp zC#glmcSJg_`IJ0Lh1)$Ttxh?u`c1$$@hFDawvq1Qq_m(*L}$6O+C7>SpT3mnI%PKH zJVkFzGQNZQ-KK<4M!7!8ks-&q@-3woEf?Ix5#Jg?VC+^aercv{WUZf1>HhmF#Qh(aLn3Cjk+5Igg!DpNso0^b&ht|7X)yM2C zb^ZEMMpV}L4;I_@l8sy9E!wVP0{)0Upgw-io@ZUNZC#~LVOK3xUJIS{avE3-2Ak(h}+ce zQxdqQ-@ES8wCGkJ(9)1-ExtnGYwoPV|Kf)jK{-tsOv$5kqFuk~?l)=iDR0rDUlDer zEHz=}huv14Yi?rwX#dSzJ?OTpA3gLLYT5Q;4D~UTSmNH4FaGxszC-)7lqV^P6hDfG z@*dYVQN~f;Al6Tx-K~^2iMO~1>StyD&0aZ3tNy(F@3)xtK9my56nl@ZRj0ntt&<)- zbP2W3DC=oWvv+)s({&ra@2T&gG^0KUCu0WArTn5B_`P9p*3mYb`oB=WW0cqSEl>9* x`;QnsdPK>-@ZPau)iN44YvpN{(YkqyeOZM8jRGf)7*jN&Xl%*82g;g9{2y`d&0GKg diff --git a/locale/pt/LC_MESSAGES/django.po b/locale/pt/LC_MESSAGES/django.po index d6c760462..12f6adb88 100644 --- a/locale/pt/LC_MESSAGES/django.po +++ b/locale/pt/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-10-29 20:47+0500\n" +"POT-Creation-Date: 2017-11-02 02:08+0500\n" "PO-Revision-Date: 2017-10-21 00:03+0100\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -117,7 +117,7 @@ msgstr "Criar Backup" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: dns/templates/dns/addDeleteDNSRecords.html:129 -#: firewall/templates/firewall/firewall.html:127 +#: firewall/templates/firewall/firewall.html:135 #: ftp/templates/ftp/listFTPAccounts.html:87 #: managePHP/templates/managePHP/installExtensions.html:61 msgid "ID" @@ -140,9 +140,9 @@ msgstr "Tamanho" #: 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/firewall.html:140 #: firewall/templates/firewall/secureSSH.html:122 -#: websiteFunctions/templates/websiteFunctions/website.html:424 +#: websiteFunctions/templates/websiteFunctions/website.html:451 msgid "Delete" msgstr "Apagar" @@ -169,6 +169,7 @@ msgstr "Nesta página, pode definir os seus destinos de backups. (SFTP)" #: dns/templates/dns/addDeleteDNSRecords.html:60 #: dns/templates/dns/createNameServer.html:48 #: dns/templates/dns/createNameServer.html:65 +#: firewall/templates/firewall/firewall.html:138 msgid "IP Address" msgstr "Endereço de IP" @@ -180,7 +181,7 @@ msgstr "Endereço de IP" #: mailServer/templates/mailServer/changeEmailPassword.html:52 #: mailServer/templates/mailServer/createEmailAccount.html:51 #: userManagment/templates/userManagment/createUser.html:123 -#: userManagment/templates/userManagment/modifyUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:106 msgid "Password" msgstr "Palavra-Chave" @@ -225,15 +226,15 @@ msgstr "Destino Adicionado." #: mailServer/templates/mailServer/deleteEmailAccount.html:79 #: manageSSL/templates/manageSSL/manageSSL.html:60 #: userManagment/templates/userManagment/createUser.html:162 -#: userManagment/templates/userManagment/modifyUser.html:139 +#: userManagment/templates/userManagment/modifyUser.html:138 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 #: websiteFunctions/templates/websiteFunctions/website.html:157 -#: websiteFunctions/templates/websiteFunctions/website.html:336 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -#: websiteFunctions/templates/websiteFunctions/website.html:508 -#: websiteFunctions/templates/websiteFunctions/website.html:563 -#: websiteFunctions/templates/websiteFunctions/website.html:618 -#: websiteFunctions/templates/websiteFunctions/website.html:765 +#: websiteFunctions/templates/websiteFunctions/website.html:363 +#: websiteFunctions/templates/websiteFunctions/website.html:405 +#: websiteFunctions/templates/websiteFunctions/website.html:535 +#: websiteFunctions/templates/websiteFunctions/website.html:590 +#: websiteFunctions/templates/websiteFunctions/website.html:645 +#: websiteFunctions/templates/websiteFunctions/website.html:792 msgid "Could not connect to server. Please refresh this page." msgstr "Impossível conectar ao servidor. Por favor atualize esta página." @@ -298,11 +299,13 @@ msgstr "Backup - 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/homePage.html:268 +#: baseTemplate/templates/baseTemplate/homePage.html:271 +#: baseTemplate/templates/baseTemplate/homePage.html:463 +#: baseTemplate/templates/baseTemplate/homePage.html:466 #: baseTemplate/templates/baseTemplate/index.html:554 #: baseTemplate/templates/baseTemplate/index.html:556 -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Back up" msgstr "Backup" @@ -370,7 +373,7 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:296 msgid "Cancel" msgstr "" @@ -410,9 +413,9 @@ msgid "Website" msgstr "Website" #: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:331 -#: baseTemplate/templates/baseTemplate/index.html:625 -#: baseTemplate/templates/baseTemplate/index.html:627 +#: baseTemplate/templates/baseTemplate/homePage.html:333 +#: baseTemplate/templates/baseTemplate/index.html:626 +#: baseTemplate/templates/baseTemplate/index.html:628 #: managePHP/templates/managePHP/installExtensions.html:62 msgid "PHP" msgstr "PHP" @@ -461,7 +464,7 @@ msgstr "Selecionar Backup" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 -#: firewall/templates/firewall/firewall.html:156 +#: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:212 msgid "Error message:" msgstr "Mensagem de erro:" @@ -517,24 +520,28 @@ msgstr "Processamento de Pedidos" msgid "Total Requests" msgstr "Pedidos Totais" -#: baseTemplate/templates/baseTemplate/homePage.html:173 +#: baseTemplate/templates/baseTemplate/homePage.html:175 +#: baseTemplate/templates/baseTemplate/homePage.html:389 #: userManagment/templates/userManagment/index.html:13 msgid "User Functions" msgstr "Funçõoes do Utilizador" -#: baseTemplate/templates/baseTemplate/homePage.html:176 +#: baseTemplate/templates/baseTemplate/homePage.html:178 +#: baseTemplate/templates/baseTemplate/homePage.html:392 #: baseTemplate/templates/baseTemplate/index.html:426 #: baseTemplate/templates/baseTemplate/index.html:427 #: baseTemplate/templates/baseTemplate/index.html:428 msgid "Users" msgstr "Utilizadores" -#: baseTemplate/templates/baseTemplate/homePage.html:186 +#: baseTemplate/templates/baseTemplate/homePage.html:188 +#: baseTemplate/templates/baseTemplate/homePage.html:402 #: websiteFunctions/templates/websiteFunctions/index.html:13 msgid "Website Functions" msgstr "Funções do Website" -#: baseTemplate/templates/baseTemplate/homePage.html:189 +#: baseTemplate/templates/baseTemplate/homePage.html:191 +#: baseTemplate/templates/baseTemplate/homePage.html:405 #: baseTemplate/templates/baseTemplate/index.html:360 #: baseTemplate/templates/baseTemplate/index.html:444 #: baseTemplate/templates/baseTemplate/index.html:445 @@ -543,13 +550,13 @@ msgstr "Funções do Website" msgid "Websites" msgstr "Websites" -#: baseTemplate/templates/baseTemplate/homePage.html:199 +#: baseTemplate/templates/baseTemplate/homePage.html:201 #, fuzzy #| msgid "Modify Package" msgid "Add/Modify Packages" msgstr "Editar Pacote" -#: baseTemplate/templates/baseTemplate/homePage.html:202 +#: baseTemplate/templates/baseTemplate/homePage.html:204 #: baseTemplate/templates/baseTemplate/index.html:366 #: baseTemplate/templates/baseTemplate/index.html:461 #: baseTemplate/templates/baseTemplate/index.html:463 @@ -557,12 +564,14 @@ msgstr "Editar Pacote" msgid "Packages" msgstr "Pacotes" -#: baseTemplate/templates/baseTemplate/homePage.html:223 +#: baseTemplate/templates/baseTemplate/homePage.html:225 +#: baseTemplate/templates/baseTemplate/homePage.html:415 #: databases/templates/databases/index.html:12 msgid "Database Functions" msgstr "Funções da Base de Dados" -#: baseTemplate/templates/baseTemplate/homePage.html:226 +#: baseTemplate/templates/baseTemplate/homePage.html:228 +#: baseTemplate/templates/baseTemplate/homePage.html:418 #: baseTemplate/templates/baseTemplate/index.html:477 #: baseTemplate/templates/baseTemplate/index.html:478 #: baseTemplate/templates/baseTemplate/index.html:479 @@ -572,23 +581,27 @@ msgstr "Funções da Base de Dados" msgid "Databases" msgstr "Bases de Dados" -#: baseTemplate/templates/baseTemplate/homePage.html:235 +#: baseTemplate/templates/baseTemplate/homePage.html:237 +#: baseTemplate/templates/baseTemplate/homePage.html:438 msgid "Control DNS" msgstr "" -#: baseTemplate/templates/baseTemplate/homePage.html:238 +#: baseTemplate/templates/baseTemplate/homePage.html:240 +#: baseTemplate/templates/baseTemplate/homePage.html:441 #: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:250 +#: baseTemplate/templates/baseTemplate/homePage.html:451 #: ftp/templates/ftp/index.html:12 msgid "FTP Functions" msgstr "Funções do FTP" -#: baseTemplate/templates/baseTemplate/homePage.html:251 +#: baseTemplate/templates/baseTemplate/homePage.html:253 +#: baseTemplate/templates/baseTemplate/homePage.html:454 #: baseTemplate/templates/baseTemplate/index.html:378 #: baseTemplate/templates/baseTemplate/index.html:536 #: baseTemplate/templates/baseTemplate/index.html:538 @@ -596,45 +609,47 @@ msgstr "Funções do FTP" msgid "FTP" msgstr "FTP" -#: baseTemplate/templates/baseTemplate/homePage.html:278 -#: baseTemplate/templates/baseTemplate/homePage.html:281 +#: baseTemplate/templates/baseTemplate/homePage.html:280 +#: baseTemplate/templates/baseTemplate/homePage.html:283 +#: baseTemplate/templates/baseTemplate/homePage.html:483 +#: baseTemplate/templates/baseTemplate/homePage.html:486 #: packages/templates/packages/createPackage.html:75 #: packages/templates/packages/modifyPackage.html:80 msgid "Emails" msgstr "E-Mails" -#: baseTemplate/templates/baseTemplate/homePage.html:291 -#: baseTemplate/templates/baseTemplate/homePage.html:294 +#: baseTemplate/templates/baseTemplate/homePage.html:293 +#: baseTemplate/templates/baseTemplate/homePage.html:296 #: tuning/templates/tuning/index.html:12 msgid "Server Tuning" msgstr "Afinação do Servidor" -#: 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 +#: baseTemplate/templates/baseTemplate/homePage.html:317 +#: baseTemplate/templates/baseTemplate/homePage.html:320 +#: baseTemplate/templates/baseTemplate/index.html:607 +#: baseTemplate/templates/baseTemplate/index.html:609 +#: baseTemplate/templates/baseTemplate/index.html:642 #: serverStatus/templates/serverStatus/index.html:13 msgid "Server Status" msgstr "Estado do Servidor" -#: baseTemplate/templates/baseTemplate/homePage.html:328 +#: baseTemplate/templates/baseTemplate/homePage.html:330 #, fuzzy #| msgid "Edit PHP Configurations" msgid "PHP Configurations" msgstr "Altere as Configurações PHP" -#: baseTemplate/templates/baseTemplate/homePage.html:340 -#: baseTemplate/templates/baseTemplate/homePage.html:343 -#: baseTemplate/templates/baseTemplate/index.html:643 +#: baseTemplate/templates/baseTemplate/homePage.html:342 +#: baseTemplate/templates/baseTemplate/homePage.html:345 +#: baseTemplate/templates/baseTemplate/index.html:644 #: websiteFunctions/templates/websiteFunctions/website.html:113 msgid "Logs" msgstr "Logs" -#: baseTemplate/templates/baseTemplate/homePage.html:363 -#: baseTemplate/templates/baseTemplate/homePage.html:366 -#: baseTemplate/templates/baseTemplate/index.html:659 -#: baseTemplate/templates/baseTemplate/index.html:661 +#: baseTemplate/templates/baseTemplate/homePage.html:365 +#: baseTemplate/templates/baseTemplate/homePage.html:368 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:662 msgid "Security" msgstr "Segurança" @@ -710,8 +725,8 @@ msgid "Dashboard Quick Menu" msgstr "Painel de Controlo" #: baseTemplate/templates/baseTemplate/index.html:384 -#: baseTemplate/templates/baseTemplate/index.html:590 -#: baseTemplate/templates/baseTemplate/index.html:592 +#: baseTemplate/templates/baseTemplate/index.html:591 +#: baseTemplate/templates/baseTemplate/index.html:593 msgid "Tuning" msgstr "Afinar" @@ -744,7 +759,7 @@ msgstr "Criar Novo Utilizador" #: userManagment/templates/userManagment/index.html:52 #: userManagment/templates/userManagment/index.html:54 #: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:120 +#: userManagment/templates/userManagment/modifyUser.html:119 msgid "Modify User" msgstr "Modificar Utilizador" @@ -924,8 +939,8 @@ msgstr "Aceder ao Webmail" #: 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:683 -#: websiteFunctions/templates/websiteFunctions/website.html:685 +#: websiteFunctions/templates/websiteFunctions/website.html:710 +#: websiteFunctions/templates/websiteFunctions/website.html:712 msgid "Create FTP Account" msgstr "Criar Conta de FTP" @@ -934,8 +949,8 @@ msgstr "Criar Conta de FTP" #: 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:695 -#: websiteFunctions/templates/websiteFunctions/website.html:697 +#: websiteFunctions/templates/websiteFunctions/website.html:722 +#: websiteFunctions/templates/websiteFunctions/website.html:724 msgid "Delete FTP Account" msgstr "Apagar Conta de FTP" @@ -950,78 +965,84 @@ msgstr "Listar Contas de FTP" msgid "Add/Delete Destination" msgstr "Adcionar/Apagar Destino" -#: baseTemplate/templates/baseTemplate/index.html:573 +#: baseTemplate/templates/baseTemplate/index.html:565 +#, fuzzy +#| msgid "Restore Back up" +msgid "Remote Back ups" +msgstr "Restaurar Backup" + #: baseTemplate/templates/baseTemplate/index.html:574 +#: baseTemplate/templates/baseTemplate/index.html:575 msgid "SSL" msgstr "SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 +#: baseTemplate/templates/baseTemplate/index.html:580 #: manageSSL/templates/manageSSL/index.html:28 #: manageSSL/templates/manageSSL/manageSSL.html:13 #: manageSSL/templates/manageSSL/manageSSL.html:20 msgid "Manage SSL" msgstr "Gerir SSL" -#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:581 #: manageSSL/templates/manageSSL/index.html:40 msgid "Hostname SSL" msgstr "SSL do Hostname" -#: baseTemplate/templates/baseTemplate/index.html:588 +#: baseTemplate/templates/baseTemplate/index.html:589 msgid "Server" msgstr "Servidor" -#: baseTemplate/templates/baseTemplate/index.html:593 +#: baseTemplate/templates/baseTemplate/index.html:594 msgid "NEW" msgstr "NOVO" -#: baseTemplate/templates/baseTemplate/index.html:598 +#: baseTemplate/templates/baseTemplate/index.html:599 #: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 #: tuning/templates/tuning/liteSpeedTuning.html:12 msgid "LiteSpeed Tuning" msgstr "Afinação do LiteSpeed" -#: baseTemplate/templates/baseTemplate/index.html:599 +#: baseTemplate/templates/baseTemplate/index.html:600 #: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 #: tuning/templates/tuning/phpTuning.html:13 msgid "PHP Tuning" msgstr "Afinação do PHP" -#: baseTemplate/templates/baseTemplate/index.html:614 +#: baseTemplate/templates/baseTemplate/index.html:615 #: serverStatus/templates/serverStatus/index.html:25 #: serverStatus/templates/serverStatus/index.html:27 msgid "LiteSpeed Status" msgstr "Estado do LiteSpeed" -#: baseTemplate/templates/baseTemplate/index.html:615 +#: baseTemplate/templates/baseTemplate/index.html:616 #: serverStatus/templates/serverStatus/cybercpmainlogfile.html:15 #: serverStatus/templates/serverStatus/index.html:37 #: serverStatus/templates/serverStatus/index.html:39 msgid "CyberPanel Main Log File" msgstr "Principal Ficheiro de Log do CyberPanel" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/installExtensions.html:13 msgid "Install PHP Extensions" msgstr "Instalar Extensões do PHP" -#: baseTemplate/templates/baseTemplate/index.html:632 +#: baseTemplate/templates/baseTemplate/index.html:633 #: managePHP/templates/managePHP/index.html:24 #: managePHP/templates/managePHP/index.html:26 msgid "Install Extensions" msgstr "Instalar Extensões" -#: baseTemplate/templates/baseTemplate/index.html:633 +#: baseTemplate/templates/baseTemplate/index.html:634 #: managePHP/templates/managePHP/index.html:36 #: managePHP/templates/managePHP/index.html:38 msgid "Edit PHP Configs" msgstr "Editar configurações do PHP" -#: baseTemplate/templates/baseTemplate/index.html:648 +#: baseTemplate/templates/baseTemplate/index.html:649 msgid "Access Log" msgstr "Log de Acessos" -#: baseTemplate/templates/baseTemplate/index.html:649 +#: baseTemplate/templates/baseTemplate/index.html:650 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1029,37 +1050,37 @@ msgstr "Log de Acessos" msgid "Error Logs" msgstr "Log de Erros" -#: baseTemplate/templates/baseTemplate/index.html:650 +#: baseTemplate/templates/baseTemplate/index.html:651 #: serverLogs/templates/serverLogs/emailLogs.html:14 #: serverLogs/templates/serverLogs/index.html:49 #: serverLogs/templates/serverLogs/index.html:51 msgid "Email Logs" msgstr "Logs de E-Mail" -#: baseTemplate/templates/baseTemplate/index.html:650 +#: baseTemplate/templates/baseTemplate/index.html:651 msgid "Email Log" msgstr "Log de E-Mail" -#: baseTemplate/templates/baseTemplate/index.html:651 +#: baseTemplate/templates/baseTemplate/index.html:652 #: serverLogs/templates/serverLogs/ftplogs.html:14 #: serverLogs/templates/serverLogs/index.html:61 #: serverLogs/templates/serverLogs/index.html:63 msgid "FTP Logs" msgstr "Log de FTP" -#: baseTemplate/templates/baseTemplate/index.html:666 +#: baseTemplate/templates/baseTemplate/index.html:667 #, fuzzy #| msgid "Firewall" msgid "Firewall Home" msgstr "Firewall" -#: baseTemplate/templates/baseTemplate/index.html:666 +#: baseTemplate/templates/baseTemplate/index.html:667 #: firewall/templates/firewall/index.html:25 #: firewall/templates/firewall/index.html:27 msgid "Firewall" msgstr "Firewall" -#: baseTemplate/templates/baseTemplate/index.html:667 +#: baseTemplate/templates/baseTemplate/index.html:668 #: firewall/templates/firewall/index.html:36 #: firewall/templates/firewall/index.html:38 #: firewall/templates/firewall/secureSSH.html:13 @@ -1203,7 +1224,7 @@ msgid "Cannot change password for " msgstr "Impossível alterar palavra-chave para " #: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:166 +#: firewall/templates/firewall/firewall.html:176 #: ftp/templates/ftp/listFTPAccounts.html:59 msgid "Could Not Connect to server. Please refresh this page" msgstr "Impossível conectar ao servidor. Por favor atualize esta página" @@ -1239,7 +1260,7 @@ msgstr "Adicionar Registos" #: dns/templates/dns/addDeleteDNSRecords.html:53 #: dns/templates/dns/addDeleteDNSRecords.html:131 -#: firewall/templates/firewall/firewall.html:128 +#: firewall/templates/firewall/firewall.html:136 #: serverStatus/templates/serverStatus/litespeedStatus.html:40 msgid "Name" msgstr "Nome" @@ -1257,7 +1278,7 @@ msgstr "Prioridade" #: dns/templates/dns/createDNSZone.html:27 #: dns/templates/dns/createNameServer.html:27 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 -#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:290 msgid "Domain Name" msgstr "Nome de Domínio" @@ -1270,7 +1291,7 @@ msgid "Text" msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:111 -#: firewall/templates/firewall/firewall.html:109 +#: firewall/templates/firewall/firewall.html:117 msgid "Add" msgstr "Adicionar" @@ -1461,15 +1482,15 @@ msgstr "Ação falhou. Mensagem de erro:" msgid "Action successful." msgstr "Ação com sucesso." -#: firewall/templates/firewall/firewall.html:129 +#: firewall/templates/firewall/firewall.html:137 msgid "Protocol" msgstr "Protocolo" -#: firewall/templates/firewall/firewall.html:130 +#: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Porta" -#: firewall/templates/firewall/firewall.html:162 +#: firewall/templates/firewall/firewall.html:172 msgid "Rule successfully added." msgstr "Regra adicionada com sucesso." @@ -1540,8 +1561,8 @@ msgstr "Adicionar Chave" #: firewall/templates/firewall/secureSSH.html:158 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:527 -#: websiteFunctions/templates/websiteFunctions/website.html:587 +#: websiteFunctions/templates/websiteFunctions/website.html:554 +#: websiteFunctions/templates/websiteFunctions/website.html:614 msgid "Save" msgstr "Guardar" @@ -1749,7 +1770,7 @@ msgstr "Avançado" #: tuning/templates/tuning/phpTuning.html:28 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:310 msgid "Select PHP" msgstr "Selecionar PHP" @@ -1845,7 +1866,7 @@ msgstr "Voltar" #: managePHP/templates/managePHP/installExtensions.html:104 #: tuning/templates/tuning/phpTuning.html:114 -#: userManagment/templates/userManagment/modifyUser.html:144 +#: userManagment/templates/userManagment/modifyUser.html:143 msgid "Cannot fetch details. Error message:" msgstr "Impossível obter os detalhes. Mensagem de erro:" @@ -1936,7 +1957,7 @@ msgstr "Nome do Pacote" #: packages/templates/packages/createPackage.html:35 #: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:223 +#: websiteFunctions/templates/websiteFunctions/website.html:250 #, fuzzy #| msgid "Domain Name" msgid "Domains" @@ -2248,7 +2269,7 @@ msgstr "Desativar" #: tuning/templates/tuning/liteSpeedTuning.html:74 #: tuning/templates/tuning/phpTuning.html:97 -#: userManagment/templates/userManagment/modifyUser.html:78 +#: userManagment/templates/userManagment/modifyUser.html:77 msgid "Currently:" msgstr "Atualmente:" @@ -2368,18 +2389,18 @@ msgid "Account Type" msgstr "Tipo de Conta" #: userManagment/templates/userManagment/createUser.html:67 -#: userManagment/templates/userManagment/modifyUser.html:73 -msgid "Reseller" -msgstr "Revendedor" +#: userManagment/templates/userManagment/modifyUser.html:72 +msgid "Admin" +msgstr "Administrador" #: userManagment/templates/userManagment/createUser.html:68 #: userManagment/templates/userManagment/createUser.html:79 -#: userManagment/templates/userManagment/modifyUser.html:74 +#: userManagment/templates/userManagment/modifyUser.html:73 msgid "Normal User" msgstr "Utilizador Normal" #: userManagment/templates/userManagment/createUser.html:92 -#: userManagment/templates/userManagment/modifyUser.html:89 +#: userManagment/templates/userManagment/modifyUser.html:88 #: userManagment/templates/userManagment/userProfile.html:67 #: userManagment/templates/userManagment/userProfile.html:74 msgid "User Accounts Limit" @@ -2391,7 +2412,7 @@ msgid "Only Numbers" msgstr "Apenas Números" #: userManagment/templates/userManagment/createUser.html:103 -#: userManagment/templates/userManagment/modifyUser.html:99 +#: userManagment/templates/userManagment/modifyUser.html:98 #: userManagment/templates/userManagment/userProfile.html:82 msgid "Websites Limit" msgstr "Limite de Websites" @@ -2416,7 +2437,7 @@ msgid "Create User" msgstr "Criar Utilizador" #: userManagment/templates/userManagment/createUser.html:154 -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid "Account with username:" msgstr "Conta com o nome de utilizador:" @@ -2474,19 +2495,15 @@ msgstr "Altere definições de utilizadores existentes nesta página." msgid "Select Account" msgstr "Selecionar Conta" -#: userManagment/templates/userManagment/modifyUser.html:72 -msgid "Admin" -msgstr "Administrador" - -#: userManagment/templates/userManagment/modifyUser.html:131 +#: userManagment/templates/userManagment/modifyUser.html:130 msgid " is successfully modified." msgstr " foi alterado com sucesso." -#: userManagment/templates/userManagment/modifyUser.html:135 +#: userManagment/templates/userManagment/modifyUser.html:134 msgid "Cannot modify user. Error message:" msgstr "Impossível alterar utilizador. Mensagem de erro:" -#: userManagment/templates/userManagment/modifyUser.html:148 +#: userManagment/templates/userManagment/modifyUser.html:147 msgid "Details fetched." msgstr "Detalhes obtidos." @@ -2537,18 +2554,18 @@ msgid "Select Owner" msgstr "Selecionar Dono" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:294 +#: websiteFunctions/templates/websiteFunctions/website.html:305 msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" msgstr "Domínio Inválido (Nota: Não é necessãrio adicionar 'http' ou 'https')" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:84 -#: websiteFunctions/templates/websiteFunctions/website.html:299 +#: websiteFunctions/templates/websiteFunctions/website.html:326 msgid "Additional Features" msgstr "Funcionalidades Adicionais" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:91 -#: websiteFunctions/templates/websiteFunctions/website.html:306 +#: websiteFunctions/templates/websiteFunctions/website.html:333 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." @@ -2558,17 +2575,17 @@ msgstr "" "próprio SSL mais tarde." #: websiteFunctions/templates/websiteFunctions/createWebsite.html:113 -#: websiteFunctions/templates/websiteFunctions/website.html:328 +#: websiteFunctions/templates/websiteFunctions/website.html:355 msgid "Cannot create website. Error message:" msgstr "Impossível criar website. Mensage de erro:" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid "Website with domain" msgstr "Website com o domínio" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -#: websiteFunctions/templates/websiteFunctions/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:359 msgid " is Successfully Created" msgstr " foi Criado com Sucesso" @@ -2712,168 +2729,173 @@ msgstr "" "Mensagem de erro:" #: websiteFunctions/templates/websiteFunctions/website.html:173 +#: websiteFunctions/templates/websiteFunctions/website.html:212 msgid "Next" msgstr "Próximo" #: websiteFunctions/templates/websiteFunctions/website.html:174 +#: websiteFunctions/templates/websiteFunctions/website.html:213 msgid "Previous" msgstr "Anterior" -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:232 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +#: websiteFunctions/templates/websiteFunctions/website.html:259 #, fuzzy #| msgid "Add Destination" msgid "Add Domains" msgstr "Adicionar Destino" -#: websiteFunctions/templates/websiteFunctions/website.html:242 -#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:269 +#: websiteFunctions/templates/websiteFunctions/website.html:271 #, fuzzy #| msgid "Select Domain" msgid "List Domains" msgstr "Selecionar Domínio" -#: websiteFunctions/templates/websiteFunctions/website.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:733 +#: websiteFunctions/templates/websiteFunctions/website.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:760 msgid "Path" msgstr "Caminho" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "This path is relative to: " msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:303 msgid "Leave empty to set default." msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:317 +#: websiteFunctions/templates/websiteFunctions/website.html:344 #, fuzzy #| msgid "Create Email" msgid "Create Domain" msgstr "Criar E-Mail" -#: websiteFunctions/templates/websiteFunctions/website.html:360 +#: websiteFunctions/templates/websiteFunctions/website.html:387 #, fuzzy #| msgid "Version Management" msgid "PHP Version Changed to:" msgstr "Gestão de Versões" -#: websiteFunctions/templates/websiteFunctions/website.html:364 +#: websiteFunctions/templates/websiteFunctions/website.html:391 #, fuzzy #| msgid "Delete" msgid "Deleted:" msgstr "Apagar" -#: websiteFunctions/templates/websiteFunctions/website.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:395 #, fuzzy #| msgid "SSL Issued for" msgid "SSL Issued:" msgstr "SSL Emitida para" -#: websiteFunctions/templates/websiteFunctions/website.html:391 +#: websiteFunctions/templates/websiteFunctions/website.html:418 msgid "Close" msgstr "" -#: websiteFunctions/templates/websiteFunctions/website.html:423 +#: websiteFunctions/templates/websiteFunctions/website.html:450 #, fuzzy #| msgid "Issue SSL" msgid "Issue" msgstr "Emitir SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:451 +#: websiteFunctions/templates/websiteFunctions/website.html:478 msgid "Configurations" msgstr "Configurações" -#: websiteFunctions/templates/websiteFunctions/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:484 #, fuzzy #| msgid "Edit vHost Main Configurations" msgid "Edit Virtual Host Main Configurations" msgstr "Alterar as Configurações do vHost Principal" -#: websiteFunctions/templates/websiteFunctions/website.html:459 +#: websiteFunctions/templates/websiteFunctions/website.html:486 msgid "Edit vHost Main Configurations" msgstr "Alterar as Configurações do vHost Principal" -#: websiteFunctions/templates/websiteFunctions/website.html:469 -#: websiteFunctions/templates/websiteFunctions/website.html:471 +#: websiteFunctions/templates/websiteFunctions/website.html:496 +#: websiteFunctions/templates/websiteFunctions/website.html:498 msgid "Add Rewrite Rules (.htaccess)" msgstr "Adicionar Regras Rewrite (.htaccess)" -#: websiteFunctions/templates/websiteFunctions/website.html:481 +#: websiteFunctions/templates/websiteFunctions/website.html:508 #, fuzzy #| msgid "Add SSL" msgid "Add Your Own SSL" msgstr "Adicionar SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:483 +#: websiteFunctions/templates/websiteFunctions/website.html:510 msgid "Add SSL" msgstr "Adicionar SSL" -#: websiteFunctions/templates/websiteFunctions/website.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:525 msgid "SSL Saved" msgstr "SSL Guardado" -#: websiteFunctions/templates/websiteFunctions/website.html:503 +#: websiteFunctions/templates/websiteFunctions/website.html:530 msgid "Could not save SSL. Error message:" msgstr "Impossível guardar SSL. Mensagem de erro:" -#: websiteFunctions/templates/websiteFunctions/website.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:580 msgid "Current configuration in the file fetched." msgstr "Configuração atual do ficheiro obtida." -#: websiteFunctions/templates/websiteFunctions/website.html:558 -#: websiteFunctions/templates/websiteFunctions/website.html:571 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:598 msgid "Could not fetch current configuration. Error message:" msgstr "Impossível obter configuração atual. Mensagem de erro:" -#: websiteFunctions/templates/websiteFunctions/website.html:567 -#: websiteFunctions/templates/websiteFunctions/website.html:622 +#: websiteFunctions/templates/websiteFunctions/website.html:594 +#: websiteFunctions/templates/websiteFunctions/website.html:649 msgid "Configuration saved. Restart LiteSpeed put them in effect." msgstr "Configuração guardada. Reinicie o LiteSpeed para coloca-las em efeito." -#: websiteFunctions/templates/websiteFunctions/website.html:608 +#: websiteFunctions/templates/websiteFunctions/website.html:635 msgid "Current rewrite rules in the file fetched." msgstr "Regras Rewrite atuais no ficheiro obtidas." -#: websiteFunctions/templates/websiteFunctions/website.html:613 +#: websiteFunctions/templates/websiteFunctions/website.html:640 msgid "Could not fetch current rewrite rules. Error message:" msgstr "Impossível obter regras Rewrite atuais. Mensagem de erro:" -#: websiteFunctions/templates/websiteFunctions/website.html:626 +#: websiteFunctions/templates/websiteFunctions/website.html:653 msgid "Could not save rewrite rules. Error message:" msgstr "Impossível guardar regras Rewrite. Mensagem de erro:" -#: websiteFunctions/templates/websiteFunctions/website.html:642 +#: websiteFunctions/templates/websiteFunctions/website.html:669 msgid "Save Rewrite Rules" msgstr "Guardar Regras Rewrite" -#: websiteFunctions/templates/websiteFunctions/website.html:665 +#: websiteFunctions/templates/websiteFunctions/website.html:692 msgid "Files" msgstr "Ficheiros" -#: websiteFunctions/templates/websiteFunctions/website.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:674 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +#: websiteFunctions/templates/websiteFunctions/website.html:701 msgid "File Manager" msgstr "Gestor de Ficheiros" -#: websiteFunctions/templates/websiteFunctions/website.html:713 +#: websiteFunctions/templates/websiteFunctions/website.html:740 msgid "Application Installer" msgstr "Instalador de Aplicações" -#: websiteFunctions/templates/websiteFunctions/website.html:719 +#: websiteFunctions/templates/websiteFunctions/website.html:746 #, fuzzy #| msgid "Wordpress with LSCache" msgid "Install wordpress with LSCache" msgstr "Wordpress com LSCache" -#: websiteFunctions/templates/websiteFunctions/website.html:721 +#: websiteFunctions/templates/websiteFunctions/website.html:748 msgid "Wordpress with LSCache" msgstr "Wordpress com LSCache" -#: websiteFunctions/templates/websiteFunctions/website.html:755 +#: websiteFunctions/templates/websiteFunctions/website.html:782 msgid "Installation failed. Error message:" msgstr "Instalação falhou. Mensagem de erro:" -#: websiteFunctions/templates/websiteFunctions/website.html:759 +#: websiteFunctions/templates/websiteFunctions/website.html:786 msgid "Installation successful. To complete the setup visit:" msgstr "Instalação com sucesso. Para completar:" + +#~ msgid "Reseller" +#~ msgstr "Revendedor" diff --git a/manageSSL/views.py b/manageSSL/views.py index 7f9f5a0f3..780180113 100644 --- a/manageSSL/views.py +++ b/manageSSL/views.py @@ -73,7 +73,10 @@ def issueSSL(request): data = json.loads(request.body) virtualHost = data['virtualHost'] - website = ChildDomains.objects.get(domain=virtualHost) + try: + website = ChildDomains.objects.get(domain=virtualHost) + except: + website = Websites.objects.get(domain=virtualHost) srcPrivKey = "/etc/letsencrypt/live/" + virtualHost + "/privkey.pem" srcFullChain = "/etc/letsencrypt/live/" + virtualHost + "/fullchain.pem" diff --git a/plogical/backupUtilities.py b/plogical/backupUtilities.py index 4b6cb2acd..56db9f2f2 100644 --- a/plogical/backupUtilities.py +++ b/plogical/backupUtilities.py @@ -403,10 +403,7 @@ class backupUtilities: @staticmethod def checkConnection(IPAddress): - - try: - backupUtilities.verifyHostKey(IPAddress) expectation = [] @@ -419,12 +416,15 @@ class backupUtilities: if index == 0: subprocess.call(['kill', str(checkConn.pid)]) + logging.CyberCPLogFileWriter.writeToFile("Remote Server is not able to authenticate for transfer to initiate, IP Address:" + IPAddress) return [0,"Remote Server is not able to authenticate for transfer to initiate."] elif index == 1: subprocess.call(['kill', str(checkConn.pid)]) return [1, "None"] else: subprocess.call(['kill', str(checkConn.pid)]) + logging.CyberCPLogFileWriter.writeToFile( + "Remote Server is not able to authenticate for transfer to initiate, IP Address:" + IPAddress) return [0, "Remote Server is not able to authenticate for transfer to initiate."] except pexpect.TIMEOUT, msg: diff --git a/plogical/firewallUtilities.py b/plogical/firewallUtilities.py index 3aef2fd86..c7aaac87c 100644 --- a/plogical/firewallUtilities.py +++ b/plogical/firewallUtilities.py @@ -12,9 +12,15 @@ import socket class FirewallUtilities: @staticmethod - def addRule(proto,port): + def addRule(proto,port,ipAddress): try: - command = 'firewall-cmd --add-port=' + port +'/' + proto +' --permanent' + + ruleFamily = 'rule family="ipv4"' + sourceAddress = 'source address="' + ipAddress + '"' + ruleProtocol = 'port protocol="' + proto + '"' + rulePort = 'port="' + port + '"' + + command = "firewall-cmd --permanent --zone=public --add-rich-rule='" + ruleFamily + " " + sourceAddress + " " + ruleProtocol + " " + rulePort + " " + "accept'" cmd = shlex.split(command) @@ -36,9 +42,14 @@ class FirewallUtilities: return 1 @staticmethod - def deleteRule(proto, port): + def deleteRule(proto, port,ipAddress): try: - command = 'firewall-cmd --remove-port=' + port + '/' + proto +' --permanent' + ruleFamily = 'rule family="ipv4"' + sourceAddress = 'source address="' + ipAddress + '"' + ruleProtocol = 'port protocol="' + proto + '"' + rulePort = 'port="' + port + '"' + + command = "firewall-cmd --permanent --zone=public --remove-rich-rule='" + ruleFamily + " " + sourceAddress + " " + ruleProtocol + " " + rulePort + " " + "accept'" cmd = shlex.split(command) diff --git a/plogical/remoteBackup.py b/plogical/remoteBackup.py index 7af55e95d..efcb68ad7 100644 --- a/plogical/remoteBackup.py +++ b/plogical/remoteBackup.py @@ -36,159 +36,8 @@ class remoteBackup: except BaseException,msg: logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [getKey]") - return [0, msg] + return [0,"Not able to fetch key from remote server, Error Message:" + str(msg)] - @staticmethod - def startRestoreTemp(backupName, backupDir, admin, backupLogPath): - try: - adminEmail = admin.email - - writeToFile = open(backupLogPath, "a") - - writeToFile.writelines("\n") - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + " Preparing restore for: " + backupName + "\n") - writeToFile.writelines("\n") - - backupFileName = backupName.strip(".tar.gz") - - completPath = backupDir + "/" + backupFileName - originalFile = backupDir + "/" + backupName - - pathToCompressedHome = completPath + "/public_html.tar.gz" - - if not os.path.exists(completPath): - os.mkdir(completPath) - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Extracting Main Archive\n") - - status = open(completPath + '/status', "w") - status.write("Extracting Main Archive") - status.close() - - tar = tarfile.open(originalFile) - tar.extractall(completPath) - tar.close() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + " UnTar File for backup: " + backupName + "\n") - - status = open(completPath + '/status', "w") - status.write("Creating Account and databases") - status.close() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Creating account and databases\n") - - phpSelection = "PHP 7.0" - - data = open(completPath + "/meta", 'r').readlines() - domain = data[0].strip('\n') - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + " Domain for " + backupName + " found: "+domain+"\n") - - try: - website = Websites.objects.get(domain=domain) - - status = open(completPath + '/status', "w") - status.write("Website already exists") - status.close() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + " Domain "+domain+" already exists. Skipping backup file.\n") - - return 0 - except: - pass - - check = 0 - for items in data: - if check == 0: - if virtualHostUtilities.createDirectoryForVirtualHost(domain, adminEmail, phpSelection) != 1: - numberOfWebsites = Websites.objects.count() - virtualHostUtilities.deleteVirtualHostConfigurations(domain, numberOfWebsites) - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + " Unable to create configuration, see CyberCP main login file. Skipping backup file.\n") - return 0 - - if virtualHostUtilities.createConfigInMainVirtualHostFile(domain) != 1: - numberOfWebsites = Websites.objects.count() - virtualHostUtilities.deleteVirtualHostConfigurations(domain, numberOfWebsites) - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Can not create configurations, see CyberCP main log file. Skipping backup file.\n") - return 0 - - - selectedPackage = Package.objects.get(packageName="Default") - - website = Websites(admin=admin, package=selectedPackage, domain=domain, adminEmail=adminEmail, - phpSelection=phpSelection, ssl=0) - - website.save() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Saved Configuration for domain\n") - - check = check + 1 - else: - dbData = items.split('-') - mysqlUtilities.createDatabase(dbData[0], dbData[1], "cyberpanel") - newDB = Databases(website=website, dbName=dbData[0], dbUser=dbData[1]) - newDB.save() - - status = open(path + '/status', "w") - status.write("Accounts and DBs Created") - status.close() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Accounts and DBs Created\n") - - data = open(completPath + "/meta", 'r').readlines() - domain = data[0].strip('\n') - websiteHome = "/home/" + domain + "/public_html" - - check = 0 - - status = open(completPath + '/status', "w") - status.write("Restoring Databases") - status.close() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Restoring Databases\n") - - for items in data: - if check == 0: - check = check + 1 - continue - else: - dbData = items.split('-') - mysqlUtilities.mysqlUtilities.restoreDatabaseBackup(dbData[0], completPath, dbData[2].strip('\n')) - - status = open(completPath + '/status', "w") - status.write("Extracting web home data") - status.close() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Extracting Web Home Data\n") - - - tar = tarfile.open(pathToCompressedHome) - tar.extractall(websiteHome) - tar.close() - - status = open(completPath + '/status', "w") - status.write("Done") - status.close() - - writeToFile.writelines("[" + time.strftime( - "%I-%M-%S-%a-%b-%Y") + "]" + "Completed Restore for domain: " + domain + "\n") - - - except BaseException, msg: - logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [startRestore]") @staticmethod def startRestore(backupDir,backupLogPath,dir): @@ -420,7 +269,7 @@ class remoteBackup: try: if virtualHost == "vmail" or virtualHost == "backup": - pass + continue writeToFile = open(backupLogPath, "a") writeToFile.writelines("[" + time.strftime( @@ -498,23 +347,6 @@ class remoteBackup: @staticmethod def remoteTransfer(ipAddress, dir,accountsToTransfer): try: - destination = "/home/backup/transfer-" + dir - backupLogPath = destination + "/backup_log" - - if not os.path.exists(destination): - os.makedirs(destination) - - - writeToFile = open(backupLogPath, "w+") - - writeToFile.writelines("############################\n") - writeToFile.writelines(" Starting remote Backup\n") - writeToFile.writelines(" Start date: " + time.strftime("%I-%M-%S-%a-%b-%Y") + "\n") - writeToFile.writelines("############################\n") - writeToFile.writelines("\n") - writeToFile.writelines("\n") - - ## fix yes/no verify = backupUtil.backupUtilities.verifyHostKey(ipAddress) @@ -526,6 +358,23 @@ class remoteBackup: else: return [0,verify[1]] + #### + + destination = "/home/backup/transfer-" + dir + backupLogPath = destination + "/backup_log" + + if not os.path.exists(destination): + os.makedirs(destination) + + writeToFile = open(backupLogPath, "w+") + + writeToFile.writelines("############################\n") + writeToFile.writelines(" Starting remote Backup\n") + writeToFile.writelines(" Start date: " + time.strftime("%I-%M-%S-%a-%b-%Y") + "\n") + writeToFile.writelines("############################\n") + writeToFile.writelines("\n") + writeToFile.writelines("\n") + if backupUtil.backupUtilities.checkIfHostIsUp(ipAddress) == 1: checkConn = backupUtil.backupUtilities.checkConnection(ipAddress) @@ -538,7 +387,7 @@ class remoteBackup: else: writeToFile.writelines("[" + time.strftime( "%I-%M-%S-%a-%b-%Y") + "]" + " Host:" + ipAddress + " is down, aborting." + "\n") - return [0, "Host is down"] + return [0, "Remote server is not able to communicate with this server."] writeToFile.close() diff --git a/plogical/virtualHostUtilities.py b/plogical/virtualHostUtilities.py index 154ed5faf..f5fd06111 100644 --- a/plogical/virtualHostUtilities.py +++ b/plogical/virtualHostUtilities.py @@ -446,14 +446,14 @@ class virtualHostUtilities: try: shutil.rmtree(virtualHostPath) except BaseException,msg: - logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [Not able to remove virtual host directory from /home]") + logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [Not able to remove virtual host directory from /home continuing..]") try: confPath = virtualHostUtilities.Server_root + "/conf/vhosts/" + virtualHostName shutil.rmtree(confPath) except BaseException, msg: - logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [Not able to remove virtual host configuration directory from /conf]") + logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [Not able to remove virtual host configuration directory from /conf ]") try: data = open("/usr/local/lsws/conf/httpd_config.conf").readlines() diff --git a/websiteFunctions/static/websiteFunctions/websiteFunctions.js b/websiteFunctions/static/websiteFunctions/websiteFunctions.js index ed008dcc9..09cf5f778 100644 --- a/websiteFunctions/static/websiteFunctions/websiteFunctions.js +++ b/websiteFunctions/static/websiteFunctions/websiteFunctions.js @@ -429,11 +429,16 @@ app.controller('websitePages', function($scope,$http) { $scope.couldNotConnect = true; $scope.fetchedData = true; $scope.hideLogs = true; + $scope.hideErrorLogs = true; $scope.hidelogsbtn = function(){ $scope.hideLogs = true; }; + $scope.hideErrorLogsbtn = function(){ + $scope.hideLogs = true; + }; + $scope.fileManagerURL = "filemanager/"+$("#domainNamePage").text(); var logType = 0; @@ -441,7 +446,7 @@ app.controller('websitePages', function($scope,$http) { $scope.fetchLogs = function(type){ - pageNumber = $scope.pageNumber; + var pageNumber = $scope.pageNumber; if(type==3){ @@ -462,6 +467,7 @@ app.controller('websitePages', function($scope,$http) { $scope.couldNotFetchLogs = true; $scope.couldNotConnect = true; $scope.fetchedData = false; + $scope.hideErrorLogs = true; @@ -470,9 +476,6 @@ app.controller('websitePages', function($scope,$http) { var domainNamePage = $("#domainNamePage").text(); - - - var data = { logType: logType, virtualHost:domainNamePage, @@ -538,6 +541,114 @@ app.controller('websitePages', function($scope,$http) { }; + $scope.errorPageNumber = 1; + + + $scope.fetchErrorLogs = function(type){ + + var errorPageNumber = $scope.errorPageNumber; + + + if(type==3){ + errorPageNumber = $scope.errorPageNumber+1; + $scope.errorPageNumber = errorPageNumber; + } + else if(type==4){ + errorPageNumber = $scope.errorPageNumber-1; + $scope.errorPageNumber = errorPageNumber; + } + else{ + logType = type; + } + + // notifications + + $scope.logFileLoading = false; + $scope.logsFeteched = true; + $scope.couldNotFetchLogs = true; + $scope.couldNotConnect = true; + $scope.fetchedData = true; + $scope.hideErrorLogs = true; + $scope.hideLogs = false; + + + + url = "/websites/fetchErrorLogs"; + + var domainNamePage = $("#domainNamePage").text(); + + + var data = { + virtualHost:domainNamePage, + page:errorPageNumber, + }; + + var config = { + headers : { + 'X-CSRFToken': getCookie('csrftoken') + } + }; + + $http.post(url, data,config).then(ListInitialDatas, cantLoadInitialDatas); + + + function ListInitialDatas(response) { + + if(response.data.logstatus == 1){ + + + // notifications + + $scope.logFileLoading = true; + $scope.logsFeteched = false; + $scope.couldNotFetchLogs = true; + $scope.couldNotConnect = true; + $scope.fetchedData = true; + $scope.hideLogs = false; + $scope.hideErrorLogs = false; + + + $scope.errorLogsData = response.data.data; + + } + + else + { + + // notifications + + $scope.logFileLoading = true; + $scope.logsFeteched = true; + $scope.couldNotFetchLogs = false; + $scope.couldNotConnect = true; + $scope.fetchedData = true; + $scope.hideLogs = true; + $scope.hideErrorLogs = true; + + + $scope.errorMessage = response.data.error_message; + + } + + + } + function cantLoadInitialDatas(response) { + + // notifications + + $scope.logFileLoading = true; + $scope.logsFeteched = true; + $scope.couldNotFetchLogs = true; + $scope.couldNotConnect = false; + $scope.fetchedData = true; + $scope.hideLogs = true; + $scope.hideErrorLogs = true; + + } + + + + }; ///////// Configurations Part diff --git a/websiteFunctions/templates/websiteFunctions/website.html b/websiteFunctions/templates/websiteFunctions/website.html index 360518eac..d9a933a93 100644 --- a/websiteFunctions/templates/websiteFunctions/website.html +++ b/websiteFunctions/templates/websiteFunctions/website.html @@ -128,7 +128,7 @@ + + + + + + + + + diff --git a/websiteFunctions/urls.py b/websiteFunctions/urls.py index 88ae8efbf..03aa48f89 100644 --- a/websiteFunctions/urls.py +++ b/websiteFunctions/urls.py @@ -28,6 +28,7 @@ urlpatterns = [ url(r'^(?P([\da-z\.-]+\.[a-z\.]{2,6}|[\d\.]+)([\/:?=&#]{1}[\da-z\.-]+)*[\/\?]?)$', views.domain, name='domain'), url(r'^getDataFromLogFile', views.getDataFromLogFile, name='getDataFromLogFile'), + url(r'^fetchErrorLogs', views.fetchErrorLogs, name='fetchErrorLogs'), url(r'^installWordpress', views.installWordpress, name='installWordpress'), diff --git a/websiteFunctions/views.py b/websiteFunctions/views.py index 4b594c9fd..692099a80 100644 --- a/websiteFunctions/views.py +++ b/websiteFunctions/views.py @@ -1063,6 +1063,46 @@ def getDataFromLogFile(request): final_json = json.dumps({'logstatus': 1, 'error_message': "None", "data": json_data}) return HttpResponse(final_json) +def fetchErrorLogs(request): + try: + data = json.loads(request.body) + virtualHost = data['virtualHost'] + page = data['page'] + + fileName = "/home/" + virtualHost + "/logs/" + virtualHost + ".error_log" + + numberOfTotalLines = int(subprocess.check_output(["wc", "-l", fileName]).split(" ")[0]) + + if numberOfTotalLines < 25: + data = subprocess.check_output(["cat", fileName]) + else: + if page == 1: + end = numberOfTotalLines + start = end - 24 + if start <= 0: + start = 1 + startingAndEnding = "'" + str(start) + "," + str(end) + "p'" + command = "sed -n " + startingAndEnding + " " + fileName + proc = subprocess.Popen(shlex.split(command), stdout=subprocess.PIPE) + data = proc.stdout.read() + else: + end = numberOfTotalLines - ((page - 1) * 25) + start = end - 24 + if start <= 0: + start = 1 + startingAndEnding = "'" + str(start) + "," + str(end) + "p'" + command = "sed -n " + startingAndEnding + " " + fileName + proc = subprocess.Popen(shlex.split(command), stdout=subprocess.PIPE) + data = proc.stdout.read() + + final_json = json.dumps({'logstatus': 1, 'error_message': "None", "data": data}) + return HttpResponse(final_json) + + except BaseException,msg: + final_json = json.dumps({'logstatus': 0, 'error_message': str(msg)}) + return HttpResponse(final_json) + + def installWordpress(request): try: