* Add instance、system en laguage

This commit is contained in:
zenggang
2023-08-01 09:05:10 +00:00
parent 2902dcb0dd
commit a21d3d13ec
10 changed files with 1676 additions and 228 deletions
+331
View File
@@ -0,0 +1,331 @@
<?PHP
$lang->instance = new stdclass;
$lang->instance->name = 'name';
$lang->instance->appName = 'Application type';
$lang->instance->version = 'version';
$lang->instance->status = 'Status';
$lang->instance->cpu = 'CPU';
$lang->instance->mem = 'Memory';
$lang->instance->space = 'space';
$lang->instance->domain = 'Domain name';
$lang->instance->visitIP = 'Access Method';
$lang->instance->dbType = 'Database';
$lang->instance->advanceOption = 'Advanced Options';
$lang->instance->baseInfo = 'Basic Information';
$lang->instance->backupAndRestore = 'Backup';
$lang->instance->advanced = 'Advanced';
$lang->instance->enableLDAP = 'Enable LDAP';
$lang->instance->linkLDAP = 'Integrated LDAP';
$lang->instance->enableSMTP = 'Enable SMTP';
$lang->instance->customSetting = 'Custom Configuration';
$lang->instance->upgradeToSenior = 'Upgrade to Advanced Edition';
$lang->instance->updateDomain = 'Update Domain Name';
$lang->instance->updateLog = 'Update Log';
$lang->instance->start = 'Start';
$lang->instance->restart = 'Restart';
$lang->instance->stop = 'Close';
$lang->instance->install = 'Install';
$lang->instance->update = 'Update';
$lang->instance->upgrade = 'Upgrade';
$lang->instance->customInstall = 'Custom Install';
$lang->instance->uninstall = 'delete';
$lang->instance->visit = 'Visit';
$lang->instance->editName = 'Modify Name';
$lang->instance->cpuCore = 'Core';
$lang->instance->scaleble = 'Application level expansion';
$lang->instance->change = 'Modify';
$lang->instance->systemLDAPInactive = 'System LDAP not enabled';
$lang->instance->toSystemLDAP = 'Deactivate';
$lang->instance->enableSMTP = 'Enable SMTP';
$lang->instance->systemSMTPInactive = 'System SMTP not enabled';
$lang->instance->toSystemSMTP = 'Deactivate';
$lang->instance->serviceInfo = 'Service Information';
$lang->instance->appTemplate = 'Application Template';
$lang->instance->source = 'Source';
$lang->instance->installBy = 'Creator';
$lang->instance->installAt = 'Creation time';
$lang->instance->runDuration = 'Running';
$lang->instance->defaultAccount = 'Default User';
$lang->instance->defaultPassword = 'Default Password';
$lang->instance->operationLog = 'Operation Record';
$lang->instance->installedService = 'Installed Service';
$lang->instance->runningService = 'Running Service';
$lang->instance->installApp = 'Install App';
$lang->instance->cpuUsage = 'CPU usage';
$lang->instance->memUsage = 'Memory usage';
$lang->instance->memTotal = 'of %s';
$lang->instance->currentMemory = 'Current Memory';
$lang->instance->adjustMem = 'Adjust Memory';
$lang->instance->setting = 'Setting';
$lang->instance->saveSetting = 'Save Settings';
$lang->instance->leftTime = 'Remaining';
$lang->instance->switchTo = 'Upgrade to';
$lang->instance->or = 'or';
$lang->instance->hasRead = 'Read';
$lang->instance->stopInstanceTips = 'You can only upgrade to the advanced version after shutting down the service!';
$lang->instance->dbTypes = array();
$lang->instance->dbTypes['sharedDB'] = 'Shared Database';
$lang->instance->dbTypes['unsharedDB'] = 'Exclusive Database';
$lang->instance->backup = new stdclass;
$lang->instance->backup->common = 'backup';
$lang->instance->backup->date = 'backup time';
$lang->instance->backup->operator = 'Backup person';
$lang->instance->backup->type = 'Backup type';
$lang->instance->backup->backupStatus = 'Backup Status';
$lang->instance->backup->restoreStatus = 'Rollback Status';
$lang->instance->backup->restoreOperator = 'Rollback by';
$lang->instance->backup->restoreTime = 'rollback time';
$lang->instance->backup->action = 'Operation';
$lang->instance->backup->restore = 'rollback';
$lang->instance->backup->restoreInfo = 'Rollback Information';
$lang->instance->backup->delete = 'Delete';
$lang->instance->backup->rebackup = 'Retrying backup';
$lang->instance->backup->create = 'Create backup';
$lang->instance->backup->database = 'Database';
$lang->instance->backup->dbType = 'Type';
$lang->instance->backup->dbName = 'name';
$lang->instance->backup->dbStatus = 'Status';
$lang->instance->backup->dbSpentSeconds = 'Time taken (seconds)';
$lang->instance->backup->dbSize = 'Size';
$lang->instance->backup->volume = 'Data volume';
$lang->instance->backup->volName = 'name';
$lang->instance->backup->volMountName = 'Mount directory';
$lang->instance->backup->volStatus = 'Status';
$lang->instance->backup->volSpentSeconds = 'Time taken (seconds)';
$lang->instance->backup->volSize = 'Size';
$lang->instance->backup->lastRestore = 'Last rollback';
$lang->instance->backup->restoreDate = 'Rollback time';
$lang->instance->backup->lastBackupAt = 'Last backup time';
$lang->instance->backup->backupBeforeRestore = 'We recommend that you backup before rolling back!';
$lang->instance->backup->enableAutoBackup = 'Enable automatic backup';
$lang->instance->backup->autoBackup = 'Automatic backup';
$lang->instance->backup->cycleDays = 'backup cycle';
$lang->instance->backup->backupTime = 'backup time';
$lang->instance->backup->keepDays = 'retention days';
$lang->instance->backup->keepDayRange = 'Please enter an integer between 1 and 30';
$lang->instance->backup->firstStartTime = '%s The first backup will be performed on %s';
$lang->instance->backup->invalidTime = 'Invalid time';
$lang->instance->backup->disableAutoBackup = 'Automatic backup has been turned off';
$lang->instance->backup->keepBackupBySystem = 'The system will only delete expired automatic backup data when there is more than one backup data.';
$lang->instance->backup->cycleList[1] = 'Daily';
$lang->instance->backup->operators = array();
$lang->instance->backup->operators['auto'] = 'Automatic backup';
$lang->instance->backup->statusList = array();
$lang->instance->backup->statusList['success'] = 'successful';
$lang->instance->backup->statusList['failed'] = 'failed';
$lang->instance->backup->statusList['pending'] = 'Waiting';
$lang->instance->backup->statusList['processing'] = 'Backup in progress';
$lang->instance->backup->statusList['inprogress'] = 'Backup in progress';
$lang->instance->backup->statusList['completed'] = 'completed';
$lang->instance->backup->statusList['executedFailed'] = 'Failed';
$lang->instance->backup->statusList['uploading'] = 'Uploading';
$lang->instance->backup->statusList['deleting'] = 'Deleting';
$lang->instance->backup->statusList['uploadFailed'] = 'Upload failed';
$lang->instance->backup->statusList['downloading'] = 'Downloading';
$lang->instance->backup->statusList['downloadFailed'] = 'Download failed';
$lang->instance->restore = new stdclass;
$lang->instance->restore->autoRestore = 'Auto Restore';
$lang->instance->restore->enableAutoRestore = 'Enable automatic restore';
$lang->instance->restore->cycleDays = 'Restore cycle';
$lang->instance->restore->restoreTime = 'Restore Time';
$lang->instance->restore->invalidTime = 'Invalid time';
$lang->instance->restore->disableAutoRestore = 'Automatic restore has been turned off';
$lang->instance->restore->firstStartTime = '%s The first automatic restore will be executed on %s';
$lang->instance->restore->cycleList[1] = 'Daily';
$lang->instance->restore->statusList = array();
$lang->instance->restore->statusList['pending'] = 'waiting';
$lang->instance->restore->statusList['inprogress'] = 'In progress';
$lang->instance->restore->statusList['completed'] = 'completed';
$lang->instance->restore->statusList['failed'] = 'failed';
$lang->instance->dbList = 'Database';
$lang->instance->dbName = 'Name';
$lang->instance->dbStatus = 'Status';
$lang->instance->dbType = 'Type';
$lang->instance->action = 'Action';
$lang->instance->management = 'Management';
$lang->instance->dbReady = 'Normal';
$lang->instance->dbWaiting = 'Waiting for readiness';
$lang->instance->log = new stdclass;
$lang->instance->log->date = 'date';
$lang->instance->log->message = 'Content';
$lang->instance->actionList = array();
$lang->instance->actionList['istall'] = '%s installed';
$lang->instance->actionList['uninstall'] = '%s deleted';
$lang->instance->actionList['start'] = 'Started %s';
$lang->instance->actionList['stop'] = '%s closed';
$lang->instance->actionList['editname'] = 'Name modified';
$lang->instance->actionList['upgrade'] = 'upgraded %s';
$lang->instance->actionList['backup'] = 'Backed up %s';
$lang->instance->actionList['restore'] = 'Rolled back %s';
$lang->instance->actionList['adjustmemory'] = 'Adjust the memory of %s to %s';
$lang->instance->actionList['adjustreplicas'] = 'Adjust the number of replicas of %s to %s';
$lang->instance->actionList['enableldap'] = 'LDAP enabled';
$lang->instance->actionList['disableldap'] = 'LDAP disabled';
$lang->instance->actionList['enablesmtp'] = 'enabled SMTP';
$lang->instance->actionList['disablesmtp'] = 'SMTP disabled';
$lang->instance->actionList['updatecustom'] = 'Modified custom configuration';
$lang->instance->actionList['tosenior'] = 'Upgrade Service to Advanced Edition';
$lang->instance->actionList['saveautobackupsettings'] = 'Modified automatic backup settings';
$lang->instance->actionList['saveautorestoresettings'] = 'Modified automatic restore settings';
$lang->instance->actionList['autobackup'] = 'The system has performed an automatic backup';
$lang->instance->actionList['autorestore'] = 'The system has performed an automatic restore';
$lang->instance->actionList['deleteexpiredbackup'] = 'The system has deleted expired automatic backups';
$lang->instance->sourceList = array();
$lang->instance->sourceList['cloud'] = 'Chancheng Public Market';
$lang->instance->sourceList['local'] = 'Local Market';
$lang->instance->channelList = array();
$lang->instance->channelList['test'] = 'Test version';
$lang->instance->channelList['stable'] = 'stable version';
$lang->instance->statusList = array();
$lang->instance->statusList['istallationFailure'] = 'Installation failed';
$lang->instance->statusList['creating'] = 'Creating';
$lang->instance->statusList['initializing'] = 'initializing';
$lang->instance->statusList['pulling'] = 'Downloading';
$lang->instance->statusList['startup'] = 'Starting';
$lang->instance->statusList['starting'] = 'Starting';
$lang->instance->statusList['running'] = 'Running';
$lang->instance->statusList['spending'] = 'Suspending';
$lang->instance->statusList['suspended'] = 'paused';
$lang->instance->statusList['istalling'] = 'Installing';
$lang->instance->statusList['uninstalling'] = 'Removing';
$lang->instance->statusList['stopping'] = 'Closing';
$lang->instance->statusList['stopped'] = 'Closed';
$lang->instance->statusList['destroying'] = 'Destroying';
$lang->instance->statusList['destroyed'] = 'Destroyed';
$lang->instance->statusList['abnormal'] = 'Abnormal';
$lang->instance->statusList['upgrading'] = 'Updating';
$lang->instance->statusList['unknown'] = 'unknown';
$lang->instance->htmlStatusesClass = array();
$lang->instance->htmlStatusesClass['running'] = 'success';
$lang->instance->htmlStatusesClass['stopped'] = 'default';
$lang->instance->htmlStatusesClass['abnormal'] = 'danger';
$lang->instance->htmlStatusesClass['istallationFailure'] = 'danger';
$lang->instance->htmlStatusesClass['busy'] = "warning";
$lang->instance->memOptions = array();
$lang->instance->memOptions[128 * 1024] = '128MB';
$lang->instance->memOptions[256 * 1024] = '256MB';
$lang->instance->memOptions[512 * 1024] = '512MB';
$lang->instance->memOptions[1024 * 1024] = '1GB';
$lang->instance->memOptions[2048 * 1024] = '2GB';
$lang->instance->memOptions[4096 * 1024] = '4GB';
$lang->instance->memOptions[8192 * 1024] = '8GB';
$lang->instance->memOptions[16384 * 1024] = '16GB';
$lang->instance->memOptions[32768 * 1024] = '32GB';
$lang->instance->componentFields = array();
$lang->instance->componentFields['replicas'] = 'Number of replicas';
$lang->instance->componentFields['cpu_limit'] = 'CPU';
$lang->instance->componentFields['mem_limit'] = 'Memory';
$lang->instance->notices = array();
$lang->instance->notices['success'] = 'Success';
$lang->instance->notices['fail'] = 'failed';
$lang->instance->notices['error'] = 'error';
$lang->instance->notices['confirmStart'] = 'Are you sure to start the application?';
$lang->instance->notices['confirmStop'] = 'Are you sure to close this application?';
$lang->instance->notices['confirmUninstall'] = 'Are you sure to delete this application?';
$lang->instance->notices['startSuccess'] = 'Successfully started';
$lang->instance->notices['startFailure'] = 'Start failed';
$lang->instance->notices['stopSuccess'] = 'Close successfully';
$lang->instance->notices['stopFail'] = 'Close failed';
$lang->instance->notices['uninstallSuccess'] = 'Successfully deleted';
$lang->instance->notices['uninstallFailure'] = 'Delete failed';
$lang->instance->notices['iinstallSuccess'] = 'Installation successful';
$lang->instance->notices['iinstallFailure'] = 'Installation failed';
$lang->instance->notices['upgradeSuccess'] = 'Upgrade successful';
$lang->instance->notices['upgradeFailure'] = 'Upgrade failed';
$lang->instance->notices['backupSuccess'] = 'Backup task submitted';
$lang->instance->notices['backupFailure'] = 'Backup failed';
$lang->instance->notices['restoreSuccess'] = 'The rollback task has been submitted';
$lang->instance->notices['restoreFailure'] = 'Rollback failed';
$lang->instance->notices['deleteSuccess'] = 'DeleteSuccess';
$lang->instance->notices['deleteFail'] = 'Delete failed';
$lang->instance->notices['starting'] = 'Starting, please wait...';
$lang->instance->notices['stopping'] = 'Closing, please wait...';
$lang->instance->notices['istalling'] = 'Installing, please wait...';
$lang->instance->notices['uninstalling'] = 'Deleting, please wait...';
$lang->instance->notices['upgrading'] = 'Upgrading, please wait...';
$lang->instance->notices['backup'] = 'Backing up, please wait...';
$lang->instance->notices['restoring'] = 'Rolling back, please wait...';
$lang->instance->notices['deleting'] = 'Deleting, please wait...';
$lang->instance->notices['adjusting'] = 'Adjusting, please wait...';
$lang->instance->notices['switching'] = 'Submitting, please wait...';
$lang->instance->notices['setting'] = 'Submitting, please wait...';
$lang->instance->notices['confirmInstall'] = 'Are you sure you want to install (%s)?';
$lang->instance->notices['confirmUpgrade'] = 'Are you sure you want to upgrade to the latest version?';
$lang->instance->notices['confirmBackup'] = 'Are you sure you want to backup?';
$lang->instance->notices['confirmRestore'] = 'This operation will overwrite the current data with the backed up data. Are you sure you want to rollback?';
$lang->instance->notices['confirmDelete'] = 'Are you sure you want to delete the backup data?';
$lang->instance->notices['adjustMemory'] = 'Are you sure you want to adjust the middle memory?';
$lang->instance->notices['switchLDAP'] = 'Modifying LDAP will restart the service. Are you sure you want to modify LDAP?';
$lang->instance->notices['enableLDAPFailed'] = 'Enable LDAP failed';
$lang->instance->notices['disableLDAPFailed'] = 'Disable LDAP failed';
$lang->instance->notices['enableLDAPSuccess'] = 'Enable LDAP successfully';
$lang->instance->notices['disableLDAPSuccess'] = 'Disable LDAP successfully';
$lang->instance->notices['switchSMTP'] = 'Modifying SMTP will restart the service. Are you sure you want to modify SMTP?';
$lang->instance->notices['enableSMTPFailed'] = 'Enable SMTP failed';
$lang->instance->notices['disableSMTPFailed'] = 'Disable SMTP failed';
$lang->instance->notices['enableSMTPSuccess'] = 'Enable SMTP successfully';
$lang->instance->notices['disableSMTPSuccess'] = 'Disable SMTP successfully';
$lang->instance->notices['confirmCustom'] = 'After modifying the custom configuration, the service will automatically restart to make the configuration effective.';
$lang->instance->notices['required'] = 'cannot be empty';
$lang->instance->nameChangeTo = '%s is modified to %s.';
$lang->instance->versionChangeTo = 'Upgrade %s to %s.';
$lang->instance->toSeniorSerial = 'Upgrade from %s to %s.';
$lang->instance->adjustMemorySize = 'It is recommended to adjust the memory to %s.';
$lang->instance->enableAutoBackup = 'Enable automatic backup';
$lang->instance->disableAutoBackup = 'Turn off automatic backup';
$lang->instance->InstanceNotExists = 'Service does not exist';
$lang->instance->capticasTooSmall = 'The number of replicas cannot be less than 1';
$lang->instance->empty = 'Currently no service available';
$lang->instance->noComponent = 'No component, click';
$lang->instance->noHigherVersion = 'No higher version found!';
$lang->instance->backupOnlyRunning = 'Only running status can be backed up';
$lang->instance->restoreOnlyRunning = 'Only running status can be rolled back';
$lang->instance->howToSelectDB = 'How to select';
$lang->instance->appLifeTip = 'The application installed on the demo account has a 30 minute limit and will be automatically deleted after 30 minutes.';
$lang->instance->serialDiff = 'View version differences';
$lang->instance->descOfSwitchSerial = 'You are currently using<strong>%s</strong>. If you want to experience more advanced features, you can upgrade to %s.';
$lang->instance->toSeniorAttention = 'Important reminder';
$lang->instance->toSeniorTips = "<ul class = 'text dealer '><li>After upgrading to the original version, it is not possible to revert back to the original version.</li><li>The Enterprise and Ultimate versions are available for a free trial of 6 months after installation.</li><li>After upgrading from the Open Source version to the Enterprise or Ultimate versions, the trial period can support up to 3 users,Please check the number of open source users. Exceeding the limit will render it unusable</After the upgrade is successful, the service will automatically restart</To avoid data loss, please make sure to backup your data before upgrading</Li></ul>";
$lang->instance->errors = new stdclass;
$lang->instance->errors->domainLength = 'The domain name length must be between 2 and 20 characters';
$lang->instance->errors->domainExists = 'The domain name is already in use, please use a different domain name.';
$lang->instance->errors->wrongDomainCharacter = 'Domain name can only be lowercase English alphabet and numbers';
$lang->instance->errors->noAppInfo = 'Failed to obtain application data, please try again later.';
$lang->instance->errors->notEnoughResource = 'Insufficient cluster resources';
$lang->instance->errors->notEnoughMemory = "The '%s' application requires %s memory, currently available memory is %s, and %s is still needed. Please expand memory resources or remove other services and try again";
$lang->instance->errors->restoreRunning = 'The current rollback is in progress, please wait for the current rollback to complete.';
$lang->instance->errors->noBackup = 'No backup data,';
$lang->instance->errors->wrongRequestData = 'The submitted data is incorrect. Please refresh the page and try again.';
$lang->instance->errors->noDBList = 'No database or inaccessible';
$lang->instance->errors->notFoundDB = 'The database cannot be found';
$lang->instance->errors->dbNameIsEmpty = 'Database name is empty';
$lang->instance->errors->faultToAdjustMemory = 'Failed to adjust memory';
$lang->instance->errors->switchLDAPFailed = 'Modifying LDAP settings failed';
$lang->instance->errors->switchSMTPFailed = 'Modifying SMTP settings failed';
$lang->instance->errors->updateCustomimFailed = 'Modifying custom configuration failed';
$lang->instance->errors->FailToSenior = 'Upgrade to Advanced version failed';
$lang->instance->errors->failedToUpdateDomain = 'Failed to update domain name';
+331
View File
@@ -0,0 +1,331 @@
<?PHP
$lang->instance = new stdclass;
$lang->instance->name = 'name';
$lang->instance->appName = 'Application type';
$lang->instance->version = 'version';
$lang->instance->status = 'Status';
$lang->instance->cpu = 'CPU';
$lang->instance->mem = 'Memory';
$lang->instance->space = 'space';
$lang->instance->domain = 'Domain name';
$lang->instance->visitIP = 'Access Method';
$lang->instance->dbType = 'Database';
$lang->instance->advanceOption = 'Advanced Options';
$lang->instance->baseInfo = 'Basic Information';
$lang->instance->backupAndRestore = 'Backup';
$lang->instance->advanced = 'Advanced';
$lang->instance->enableLDAP = 'Enable LDAP';
$lang->instance->linkLDAP = 'Integrated LDAP';
$lang->instance->enableSMTP = 'Enable SMTP';
$lang->instance->customSetting = 'Custom Configuration';
$lang->instance->upgradeToSenior = 'Upgrade to Advanced Edition';
$lang->instance->updateDomain = 'Update Domain Name';
$lang->instance->updateLog = 'Update Log';
$lang->instance->start = 'Start';
$lang->instance->restart = 'Restart';
$lang->instance->stop = 'Close';
$lang->instance->install = 'Install';
$lang->instance->update = 'Update';
$lang->instance->upgrade = 'Upgrade';
$lang->instance->customInstall = 'Custom Install';
$lang->instance->uninstall = 'delete';
$lang->instance->visit = 'Visit';
$lang->instance->editName = 'Modify Name';
$lang->instance->cpuCore = 'Core';
$lang->instance->scaleble = 'Application level expansion';
$lang->instance->change = 'Modify';
$lang->instance->systemLDAPInactive = 'System LDAP not enabled';
$lang->instance->toSystemLDAP = 'Deactivate';
$lang->instance->enableSMTP = 'Enable SMTP';
$lang->instance->systemSMTPInactive = 'System SMTP not enabled';
$lang->instance->toSystemSMTP = 'Deactivate';
$lang->instance->serviceInfo = 'Service Information';
$lang->instance->appTemplate = 'Application Template';
$lang->instance->source = 'Source';
$lang->instance->installBy = 'Creator';
$lang->instance->installAt = 'Creation time';
$lang->instance->runDuration = 'Running';
$lang->instance->defaultAccount = 'Default User';
$lang->instance->defaultPassword = 'Default Password';
$lang->instance->operationLog = 'Operation Record';
$lang->instance->installedService = 'Installed Service';
$lang->instance->runningService = 'Running Service';
$lang->instance->installApp = 'Install App';
$lang->instance->cpuUsage = 'CPU usage';
$lang->instance->memUsage = 'Memory usage';
$lang->instance->memTotal = 'of %s';
$lang->instance->currentMemory = 'Current Memory';
$lang->instance->adjustMem = 'Adjust Memory';
$lang->instance->setting = 'Setting';
$lang->instance->saveSetting = 'Save Settings';
$lang->instance->leftTime = 'Remaining';
$lang->instance->switchTo = 'Upgrade to';
$lang->instance->or = 'or';
$lang->instance->hasRead = 'Read';
$lang->instance->stopInstanceTips = 'You can only upgrade to the advanced version after shutting down the service!';
$lang->instance->dbTypes = array();
$lang->instance->dbTypes['sharedDB'] = 'Shared Database';
$lang->instance->dbTypes['unsharedDB'] = 'Exclusive Database';
$lang->instance->backup = new stdclass;
$lang->instance->backup->common = 'backup';
$lang->instance->backup->date = 'backup time';
$lang->instance->backup->operator = 'Backup person';
$lang->instance->backup->type = 'Backup type';
$lang->instance->backup->backupStatus = 'Backup Status';
$lang->instance->backup->restoreStatus = 'Rollback Status';
$lang->instance->backup->restoreOperator = 'Rollback by';
$lang->instance->backup->restoreTime = 'rollback time';
$lang->instance->backup->action = 'Operation';
$lang->instance->backup->restore = 'rollback';
$lang->instance->backup->restoreInfo = 'Rollback Information';
$lang->instance->backup->delete = 'Delete';
$lang->instance->backup->rebackup = 'Retrying backup';
$lang->instance->backup->create = 'Create backup';
$lang->instance->backup->database = 'Database';
$lang->instance->backup->dbType = 'Type';
$lang->instance->backup->dbName = 'name';
$lang->instance->backup->dbStatus = 'Status';
$lang->instance->backup->dbSpentSeconds = 'Time taken (seconds)';
$lang->instance->backup->dbSize = 'Size';
$lang->instance->backup->volume = 'Data volume';
$lang->instance->backup->volName = 'name';
$lang->instance->backup->volMountName = 'Mount directory';
$lang->instance->backup->volStatus = 'Status';
$lang->instance->backup->volSpentSeconds = 'Time taken (seconds)';
$lang->instance->backup->volSize = 'Size';
$lang->instance->backup->lastRestore = 'Last rollback';
$lang->instance->backup->restoreDate = 'Rollback time';
$lang->instance->backup->lastBackupAt = 'Last backup time';
$lang->instance->backup->backupBeforeRestore = 'We recommend that you backup before rolling back!';
$lang->instance->backup->enableAutoBackup = 'Enable automatic backup';
$lang->instance->backup->autoBackup = 'Automatic backup';
$lang->instance->backup->cycleDays = 'backup cycle';
$lang->instance->backup->backupTime = 'backup time';
$lang->instance->backup->keepDays = 'retention days';
$lang->instance->backup->keepDayRange = 'Please enter an integer between 1 and 30';
$lang->instance->backup->firstStartTime = '%s The first backup will be performed on %s';
$lang->instance->backup->invalidTime = 'Invalid time';
$lang->instance->backup->disableAutoBackup = 'Automatic backup has been turned off';
$lang->instance->backup->keepBackupBySystem = 'The system will only delete expired automatic backup data when there is more than one backup data.';
$lang->instance->backup->cycleList[1] = 'Daily';
$lang->instance->backup->operators = array();
$lang->instance->backup->operators['auto'] = 'Automatic backup';
$lang->instance->backup->statusList = array();
$lang->instance->backup->statusList['success'] = 'successful';
$lang->instance->backup->statusList['failed'] = 'failed';
$lang->instance->backup->statusList['pending'] = 'Waiting';
$lang->instance->backup->statusList['processing'] = 'Backup in progress';
$lang->instance->backup->statusList['inprogress'] = 'Backup in progress';
$lang->instance->backup->statusList['completed'] = 'completed';
$lang->instance->backup->statusList['executedFailed'] = 'Failed';
$lang->instance->backup->statusList['uploading'] = 'Uploading';
$lang->instance->backup->statusList['deleting'] = 'Deleting';
$lang->instance->backup->statusList['uploadFailed'] = 'Upload failed';
$lang->instance->backup->statusList['downloading'] = 'Downloading';
$lang->instance->backup->statusList['downloadFailed'] = 'Download failed';
$lang->instance->restore = new stdclass;
$lang->instance->restore->autoRestore = 'Auto Restore';
$lang->instance->restore->enableAutoRestore = 'Enable automatic restore';
$lang->instance->restore->cycleDays = 'Restore cycle';
$lang->instance->restore->restoreTime = 'Restore Time';
$lang->instance->restore->invalidTime = 'Invalid time';
$lang->instance->restore->disableAutoRestore = 'Automatic restore has been turned off';
$lang->instance->restore->firstStartTime = '%s The first automatic restore will be executed on %s';
$lang->instance->restore->cycleList[1] = 'Daily';
$lang->instance->restore->statusList = array();
$lang->instance->restore->statusList['pending'] = 'waiting';
$lang->instance->restore->statusList['inprogress'] = 'In progress';
$lang->instance->restore->statusList['completed'] = 'completed';
$lang->instance->restore->statusList['failed'] = 'failed';
$lang->instance->dbList = 'Database';
$lang->instance->dbName = 'Name';
$lang->instance->dbStatus = 'Status';
$lang->instance->dbType = 'Type';
$lang->instance->action = 'Action';
$lang->instance->management = 'Management';
$lang->instance->dbReady = 'Normal';
$lang->instance->dbWaiting = 'Waiting for readiness';
$lang->instance->log = new stdclass;
$lang->instance->log->date = 'date';
$lang->instance->log->message = 'Content';
$lang->instance->actionList = array();
$lang->instance->actionList['istall'] = '%s installed';
$lang->instance->actionList['uninstall'] = '%s deleted';
$lang->instance->actionList['start'] = 'Started %s';
$lang->instance->actionList['stop'] = '%s closed';
$lang->instance->actionList['editname'] = 'Name modified';
$lang->instance->actionList['upgrade'] = 'upgraded %s';
$lang->instance->actionList['backup'] = 'Backed up %s';
$lang->instance->actionList['restore'] = 'Rolled back %s';
$lang->instance->actionList['adjustmemory'] = 'Adjust the memory of %s to %s';
$lang->instance->actionList['adjustreplicas'] = 'Adjust the number of replicas of %s to %s';
$lang->instance->actionList['enableldap'] = 'LDAP enabled';
$lang->instance->actionList['disableldap'] = 'LDAP disabled';
$lang->instance->actionList['enablesmtp'] = 'enabled SMTP';
$lang->instance->actionList['disablesmtp'] = 'SMTP disabled';
$lang->instance->actionList['updatecustom'] = 'Modified custom configuration';
$lang->instance->actionList['tosenior'] = 'Upgrade Service to Advanced Edition';
$lang->instance->actionList['saveautobackupsettings'] = 'Modified automatic backup settings';
$lang->instance->actionList['saveautorestoresettings'] = 'Modified automatic restore settings';
$lang->instance->actionList['autobackup'] = 'The system has performed an automatic backup';
$lang->instance->actionList['autorestore'] = 'The system has performed an automatic restore';
$lang->instance->actionList['deleteexpiredbackup'] = 'The system has deleted expired automatic backups';
$lang->instance->sourceList = array();
$lang->instance->sourceList['cloud'] = 'Chancheng Public Market';
$lang->instance->sourceList['local'] = 'Local Market';
$lang->instance->channelList = array();
$lang->instance->channelList['test'] = 'Test version';
$lang->instance->channelList['stable'] = 'stable version';
$lang->instance->statusList = array();
$lang->instance->statusList['istallationFailure'] = 'Installation failed';
$lang->instance->statusList['creating'] = 'Creating';
$lang->instance->statusList['initializing'] = 'initializing';
$lang->instance->statusList['pulling'] = 'Downloading';
$lang->instance->statusList['startup'] = 'Starting';
$lang->instance->statusList['starting'] = 'Starting';
$lang->instance->statusList['running'] = 'Running';
$lang->instance->statusList['spending'] = 'Suspending';
$lang->instance->statusList['suspended'] = 'paused';
$lang->instance->statusList['istalling'] = 'Installing';
$lang->instance->statusList['uninstalling'] = 'Removing';
$lang->instance->statusList['stopping'] = 'Closing';
$lang->instance->statusList['stopped'] = 'Closed';
$lang->instance->statusList['destroying'] = 'Destroying';
$lang->instance->statusList['destroyed'] = 'Destroyed';
$lang->instance->statusList['abnormal'] = 'Abnormal';
$lang->instance->statusList['upgrading'] = 'Updating';
$lang->instance->statusList['unknown'] = 'unknown';
$lang->instance->htmlStatusesClass = array();
$lang->instance->htmlStatusesClass['running'] = 'success';
$lang->instance->htmlStatusesClass['stopped'] = 'default';
$lang->instance->htmlStatusesClass['abnormal'] = 'danger';
$lang->instance->htmlStatusesClass['istallationFailure'] = 'danger';
$lang->instance->htmlStatusesClass['busy'] = "warning";
$lang->instance->memOptions = array();
$lang->instance->memOptions[128 * 1024] = '128MB';
$lang->instance->memOptions[256 * 1024] = '256MB';
$lang->instance->memOptions[512 * 1024] = '512MB';
$lang->instance->memOptions[1024 * 1024] = '1GB';
$lang->instance->memOptions[2048 * 1024] = '2GB';
$lang->instance->memOptions[4096 * 1024] = '4GB';
$lang->instance->memOptions[8192 * 1024] = '8GB';
$lang->instance->memOptions[16384 * 1024] = '16GB';
$lang->instance->memOptions[32768 * 1024] = '32GB';
$lang->instance->componentFields = array();
$lang->instance->componentFields['replicas'] = 'Number of replicas';
$lang->instance->componentFields['cpu_limit'] = 'CPU';
$lang->instance->componentFields['mem_limit'] = 'Memory';
$lang->instance->notices = array();
$lang->instance->notices['success'] = 'Success';
$lang->instance->notices['fail'] = 'failed';
$lang->instance->notices['error'] = 'error';
$lang->instance->notices['confirmStart'] = 'Are you sure to start the application?';
$lang->instance->notices['confirmStop'] = 'Are you sure to close this application?';
$lang->instance->notices['confirmUninstall'] = 'Are you sure to delete this application?';
$lang->instance->notices['startSuccess'] = 'Successfully started';
$lang->instance->notices['startFailure'] = 'Start failed';
$lang->instance->notices['stopSuccess'] = 'Close successfully';
$lang->instance->notices['stopFail'] = 'Close failed';
$lang->instance->notices['uninstallSuccess'] = 'Successfully deleted';
$lang->instance->notices['uninstallFailure'] = 'Delete failed';
$lang->instance->notices['iinstallSuccess'] = 'Installation successful';
$lang->instance->notices['iinstallFailure'] = 'Installation failed';
$lang->instance->notices['upgradeSuccess'] = 'Upgrade successful';
$lang->instance->notices['upgradeFailure'] = 'Upgrade failed';
$lang->instance->notices['backupSuccess'] = 'Backup task submitted';
$lang->instance->notices['backupFailure'] = 'Backup failed';
$lang->instance->notices['restoreSuccess'] = 'The rollback task has been submitted';
$lang->instance->notices['restoreFailure'] = 'Rollback failed';
$lang->instance->notices['deleteSuccess'] = 'DeleteSuccess';
$lang->instance->notices['deleteFail'] = 'Delete failed';
$lang->instance->notices['starting'] = 'Starting, please wait...';
$lang->instance->notices['stopping'] = 'Closing, please wait...';
$lang->instance->notices['istalling'] = 'Installing, please wait...';
$lang->instance->notices['uninstalling'] = 'Deleting, please wait...';
$lang->instance->notices['upgrading'] = 'Upgrading, please wait...';
$lang->instance->notices['backup'] = 'Backing up, please wait...';
$lang->instance->notices['restoring'] = 'Rolling back, please wait...';
$lang->instance->notices['deleting'] = 'Deleting, please wait...';
$lang->instance->notices['adjusting'] = 'Adjusting, please wait...';
$lang->instance->notices['switching'] = 'Submitting, please wait...';
$lang->instance->notices['setting'] = 'Submitting, please wait...';
$lang->instance->notices['confirmInstall'] = 'Are you sure you want to install (%s)?';
$lang->instance->notices['confirmUpgrade'] = 'Are you sure you want to upgrade to the latest version?';
$lang->instance->notices['confirmBackup'] = 'Are you sure you want to backup?';
$lang->instance->notices['confirmRestore'] = 'This operation will overwrite the current data with the backed up data. Are you sure you want to rollback?';
$lang->instance->notices['confirmDelete'] = 'Are you sure you want to delete the backup data?';
$lang->instance->notices['adjustMemory'] = 'Are you sure you want to adjust the middle memory?';
$lang->instance->notices['switchLDAP'] = 'Modifying LDAP will restart the service. Are you sure you want to modify LDAP?';
$lang->instance->notices['enableLDAPFailed'] = 'Enable LDAP failed';
$lang->instance->notices['disableLDAPFailed'] = 'Disable LDAP failed';
$lang->instance->notices['enableLDAPSuccess'] = 'Enable LDAP successfully';
$lang->instance->notices['disableLDAPSuccess'] = 'Disable LDAP successfully';
$lang->instance->notices['switchSMTP'] = 'Modifying SMTP will restart the service. Are you sure you want to modify SMTP?';
$lang->instance->notices['enableSMTPFailed'] = 'Enable SMTP failed';
$lang->instance->notices['disableSMTPFailed'] = 'Disable SMTP failed';
$lang->instance->notices['enableSMTPSuccess'] = 'Enable SMTP successfully';
$lang->instance->notices['disableSMTPSuccess'] = 'Disable SMTP successfully';
$lang->instance->notices['confirmCustom'] = 'After modifying the custom configuration, the service will automatically restart to make the configuration effective.';
$lang->instance->notices['required'] = 'cannot be empty';
$lang->instance->nameChangeTo = '%s is modified to %s.';
$lang->instance->versionChangeTo = 'Upgrade %s to %s.';
$lang->instance->toSeniorSerial = 'Upgrade from %s to %s.';
$lang->instance->adjustMemorySize = 'It is recommended to adjust the memory to %s.';
$lang->instance->enableAutoBackup = 'Enable automatic backup';
$lang->instance->disableAutoBackup = 'Turn off automatic backup';
$lang->instance->InstanceNotExists = 'Service does not exist';
$lang->instance->capticasTooSmall = 'The number of replicas cannot be less than 1';
$lang->instance->empty = 'Currently no service available';
$lang->instance->noComponent = 'No component, click';
$lang->instance->noHigherVersion = 'No higher version found!';
$lang->instance->backupOnlyRunning = 'Only running status can be backed up';
$lang->instance->restoreOnlyRunning = 'Only running status can be rolled back';
$lang->instance->howToSelectDB = 'How to select';
$lang->instance->appLifeTip = 'The application installed on the demo account has a 30 minute limit and will be automatically deleted after 30 minutes.';
$lang->instance->serialDiff = 'View version differences';
$lang->instance->descOfSwitchSerial = 'You are currently using<strong>%s</strong>. If you want to experience more advanced features, you can upgrade to %s.';
$lang->instance->toSeniorAttention = 'Important reminder';
$lang->instance->toSeniorTips = "<ul class = 'text dealer '><li>After upgrading to the original version, it is not possible to revert back to the original version.</li><li>The Enterprise and Ultimate versions are available for a free trial of 6 months after installation.</li><li>After upgrading from the Open Source version to the Enterprise or Ultimate versions, the trial period can support up to 3 users,Please check the number of open source users. Exceeding the limit will render it unusable</After the upgrade is successful, the service will automatically restart</To avoid data loss, please make sure to backup your data before upgrading</Li></ul>";
$lang->instance->errors = new stdclass;
$lang->instance->errors->domainLength = 'The domain name length must be between 2 and 20 characters';
$lang->instance->errors->domainExists = 'The domain name is already in use, please use a different domain name.';
$lang->instance->errors->wrongDomainCharacter = 'Domain name can only be lowercase English alphabet and numbers';
$lang->instance->errors->noAppInfo = 'Failed to obtain application data, please try again later.';
$lang->instance->errors->notEnoughResource = 'Insufficient cluster resources';
$lang->instance->errors->notEnoughMemory = "The '%s' application requires %s memory, currently available memory is %s, and %s is still needed. Please expand memory resources or remove other services and try again";
$lang->instance->errors->restoreRunning = 'The current rollback is in progress, please wait for the current rollback to complete.';
$lang->instance->errors->noBackup = 'No backup data,';
$lang->instance->errors->wrongRequestData = 'The submitted data is incorrect. Please refresh the page and try again.';
$lang->instance->errors->noDBList = 'No database or inaccessible';
$lang->instance->errors->notFoundDB = 'The database cannot be found';
$lang->instance->errors->dbNameIsEmpty = 'Database name is empty';
$lang->instance->errors->faultToAdjustMemory = 'Failed to adjust memory';
$lang->instance->errors->switchLDAPFailed = 'Modifying LDAP settings failed';
$lang->instance->errors->switchSMTPFailed = 'Modifying SMTP settings failed';
$lang->instance->errors->updateCustomimFailed = 'Modifying custom configuration failed';
$lang->instance->errors->FailToSenior = 'Upgrade to Advanced version failed';
$lang->instance->errors->failedToUpdateDomain = 'Failed to update domain name';
+331
View File
@@ -0,0 +1,331 @@
<?PHP
$lang->instance = new stdclass;
$lang->instance->name = 'name';
$lang->instance->appName = 'Application type';
$lang->instance->version = 'version';
$lang->instance->status = 'Status';
$lang->instance->cpu = 'CPU';
$lang->instance->mem = 'Memory';
$lang->instance->space = 'space';
$lang->instance->domain = 'Domain name';
$lang->instance->visitIP = 'Access Method';
$lang->instance->dbType = 'Database';
$lang->instance->advanceOption = 'Advanced Options';
$lang->instance->baseInfo = 'Basic Information';
$lang->instance->backupAndRestore = 'Backup';
$lang->instance->advanced = 'Advanced';
$lang->instance->enableLDAP = 'Enable LDAP';
$lang->instance->linkLDAP = 'Integrated LDAP';
$lang->instance->enableSMTP = 'Enable SMTP';
$lang->instance->customSetting = 'Custom Configuration';
$lang->instance->upgradeToSenior = 'Upgrade to Advanced Edition';
$lang->instance->updateDomain = 'Update Domain Name';
$lang->instance->updateLog = 'Update Log';
$lang->instance->start = 'Start';
$lang->instance->restart = 'Restart';
$lang->instance->stop = 'Close';
$lang->instance->install = 'Install';
$lang->instance->update = 'Update';
$lang->instance->upgrade = 'Upgrade';
$lang->instance->customInstall = 'Custom Install';
$lang->instance->uninstall = 'delete';
$lang->instance->visit = 'Visit';
$lang->instance->editName = 'Modify Name';
$lang->instance->cpuCore = 'Core';
$lang->instance->scaleble = 'Application level expansion';
$lang->instance->change = 'Modify';
$lang->instance->systemLDAPInactive = 'System LDAP not enabled';
$lang->instance->toSystemLDAP = 'Deactivate';
$lang->instance->enableSMTP = 'Enable SMTP';
$lang->instance->systemSMTPInactive = 'System SMTP not enabled';
$lang->instance->toSystemSMTP = 'Deactivate';
$lang->instance->serviceInfo = 'Service Information';
$lang->instance->appTemplate = 'Application Template';
$lang->instance->source = 'Source';
$lang->instance->installBy = 'Creator';
$lang->instance->installAt = 'Creation time';
$lang->instance->runDuration = 'Running';
$lang->instance->defaultAccount = 'Default User';
$lang->instance->defaultPassword = 'Default Password';
$lang->instance->operationLog = 'Operation Record';
$lang->instance->installedService = 'Installed Service';
$lang->instance->runningService = 'Running Service';
$lang->instance->installApp = 'Install App';
$lang->instance->cpuUsage = 'CPU usage';
$lang->instance->memUsage = 'Memory usage';
$lang->instance->memTotal = 'of %s';
$lang->instance->currentMemory = 'Current Memory';
$lang->instance->adjustMem = 'Adjust Memory';
$lang->instance->setting = 'Setting';
$lang->instance->saveSetting = 'Save Settings';
$lang->instance->leftTime = 'Remaining';
$lang->instance->switchTo = 'Upgrade to';
$lang->instance->or = 'or';
$lang->instance->hasRead = 'Read';
$lang->instance->stopInstanceTips = 'You can only upgrade to the advanced version after shutting down the service!';
$lang->instance->dbTypes = array();
$lang->instance->dbTypes['sharedDB'] = 'Shared Database';
$lang->instance->dbTypes['unsharedDB'] = 'Exclusive Database';
$lang->instance->backup = new stdclass;
$lang->instance->backup->common = 'backup';
$lang->instance->backup->date = 'backup time';
$lang->instance->backup->operator = 'Backup person';
$lang->instance->backup->type = 'Backup type';
$lang->instance->backup->backupStatus = 'Backup Status';
$lang->instance->backup->restoreStatus = 'Rollback Status';
$lang->instance->backup->restoreOperator = 'Rollback by';
$lang->instance->backup->restoreTime = 'rollback time';
$lang->instance->backup->action = 'Operation';
$lang->instance->backup->restore = 'rollback';
$lang->instance->backup->restoreInfo = 'Rollback Information';
$lang->instance->backup->delete = 'Delete';
$lang->instance->backup->rebackup = 'Retrying backup';
$lang->instance->backup->create = 'Create backup';
$lang->instance->backup->database = 'Database';
$lang->instance->backup->dbType = 'Type';
$lang->instance->backup->dbName = 'name';
$lang->instance->backup->dbStatus = 'Status';
$lang->instance->backup->dbSpentSeconds = 'Time taken (seconds)';
$lang->instance->backup->dbSize = 'Size';
$lang->instance->backup->volume = 'Data volume';
$lang->instance->backup->volName = 'name';
$lang->instance->backup->volMountName = 'Mount directory';
$lang->instance->backup->volStatus = 'Status';
$lang->instance->backup->volSpentSeconds = 'Time taken (seconds)';
$lang->instance->backup->volSize = 'Size';
$lang->instance->backup->lastRestore = 'Last rollback';
$lang->instance->backup->restoreDate = 'Rollback time';
$lang->instance->backup->lastBackupAt = 'Last backup time';
$lang->instance->backup->backupBeforeRestore = 'We recommend that you backup before rolling back!';
$lang->instance->backup->enableAutoBackup = 'Enable automatic backup';
$lang->instance->backup->autoBackup = 'Automatic backup';
$lang->instance->backup->cycleDays = 'backup cycle';
$lang->instance->backup->backupTime = 'backup time';
$lang->instance->backup->keepDays = 'retention days';
$lang->instance->backup->keepDayRange = 'Please enter an integer between 1 and 30';
$lang->instance->backup->firstStartTime = '%s The first backup will be performed on %s';
$lang->instance->backup->invalidTime = 'Invalid time';
$lang->instance->backup->disableAutoBackup = 'Automatic backup has been turned off';
$lang->instance->backup->keepBackupBySystem = 'The system will only delete expired automatic backup data when there is more than one backup data.';
$lang->instance->backup->cycleList[1] = 'Daily';
$lang->instance->backup->operators = array();
$lang->instance->backup->operators['auto'] = 'Automatic backup';
$lang->instance->backup->statusList = array();
$lang->instance->backup->statusList['success'] = 'successful';
$lang->instance->backup->statusList['failed'] = 'failed';
$lang->instance->backup->statusList['pending'] = 'Waiting';
$lang->instance->backup->statusList['processing'] = 'Backup in progress';
$lang->instance->backup->statusList['inprogress'] = 'Backup in progress';
$lang->instance->backup->statusList['completed'] = 'completed';
$lang->instance->backup->statusList['executedFailed'] = 'Failed';
$lang->instance->backup->statusList['uploading'] = 'Uploading';
$lang->instance->backup->statusList['deleting'] = 'Deleting';
$lang->instance->backup->statusList['uploadFailed'] = 'Upload failed';
$lang->instance->backup->statusList['downloading'] = 'Downloading';
$lang->instance->backup->statusList['downloadFailed'] = 'Download failed';
$lang->instance->restore = new stdclass;
$lang->instance->restore->autoRestore = 'Auto Restore';
$lang->instance->restore->enableAutoRestore = 'Enable automatic restore';
$lang->instance->restore->cycleDays = 'Restore cycle';
$lang->instance->restore->restoreTime = 'Restore Time';
$lang->instance->restore->invalidTime = 'Invalid time';
$lang->instance->restore->disableAutoRestore = 'Automatic restore has been turned off';
$lang->instance->restore->firstStartTime = '%s The first automatic restore will be executed on %s';
$lang->instance->restore->cycleList[1] = 'Daily';
$lang->instance->restore->statusList = array();
$lang->instance->restore->statusList['pending'] = 'waiting';
$lang->instance->restore->statusList['inprogress'] = 'In progress';
$lang->instance->restore->statusList['completed'] = 'completed';
$lang->instance->restore->statusList['failed'] = 'failed';
$lang->instance->dbList = 'Database';
$lang->instance->dbName = 'Name';
$lang->instance->dbStatus = 'Status';
$lang->instance->dbType = 'Type';
$lang->instance->action = 'Action';
$lang->instance->management = 'Management';
$lang->instance->dbReady = 'Normal';
$lang->instance->dbWaiting = 'Waiting for readiness';
$lang->instance->log = new stdclass;
$lang->instance->log->date = 'date';
$lang->instance->log->message = 'Content';
$lang->instance->actionList = array();
$lang->instance->actionList['istall'] = '%s installed';
$lang->instance->actionList['uninstall'] = '%s deleted';
$lang->instance->actionList['start'] = 'Started %s';
$lang->instance->actionList['stop'] = '%s closed';
$lang->instance->actionList['editname'] = 'Name modified';
$lang->instance->actionList['upgrade'] = 'upgraded %s';
$lang->instance->actionList['backup'] = 'Backed up %s';
$lang->instance->actionList['restore'] = 'Rolled back %s';
$lang->instance->actionList['adjustmemory'] = 'Adjust the memory of %s to %s';
$lang->instance->actionList['adjustreplicas'] = 'Adjust the number of replicas of %s to %s';
$lang->instance->actionList['enableldap'] = 'LDAP enabled';
$lang->instance->actionList['disableldap'] = 'LDAP disabled';
$lang->instance->actionList['enablesmtp'] = 'enabled SMTP';
$lang->instance->actionList['disablesmtp'] = 'SMTP disabled';
$lang->instance->actionList['updatecustom'] = 'Modified custom configuration';
$lang->instance->actionList['tosenior'] = 'Upgrade Service to Advanced Edition';
$lang->instance->actionList['saveautobackupsettings'] = 'Modified automatic backup settings';
$lang->instance->actionList['saveautorestoresettings'] = 'Modified automatic restore settings';
$lang->instance->actionList['autobackup'] = 'The system has performed an automatic backup';
$lang->instance->actionList['autorestore'] = 'The system has performed an automatic restore';
$lang->instance->actionList['deleteexpiredbackup'] = 'The system has deleted expired automatic backups';
$lang->instance->sourceList = array();
$lang->instance->sourceList['cloud'] = 'Chancheng Public Market';
$lang->instance->sourceList['local'] = 'Local Market';
$lang->instance->channelList = array();
$lang->instance->channelList['test'] = 'Test version';
$lang->instance->channelList['stable'] = 'stable version';
$lang->instance->statusList = array();
$lang->instance->statusList['istallationFailure'] = 'Installation failed';
$lang->instance->statusList['creating'] = 'Creating';
$lang->instance->statusList['initializing'] = 'initializing';
$lang->instance->statusList['pulling'] = 'Downloading';
$lang->instance->statusList['startup'] = 'Starting';
$lang->instance->statusList['starting'] = 'Starting';
$lang->instance->statusList['running'] = 'Running';
$lang->instance->statusList['spending'] = 'Suspending';
$lang->instance->statusList['suspended'] = 'paused';
$lang->instance->statusList['istalling'] = 'Installing';
$lang->instance->statusList['uninstalling'] = 'Removing';
$lang->instance->statusList['stopping'] = 'Closing';
$lang->instance->statusList['stopped'] = 'Closed';
$lang->instance->statusList['destroying'] = 'Destroying';
$lang->instance->statusList['destroyed'] = 'Destroyed';
$lang->instance->statusList['abnormal'] = 'Abnormal';
$lang->instance->statusList['upgrading'] = 'Updating';
$lang->instance->statusList['unknown'] = 'unknown';
$lang->instance->htmlStatusesClass = array();
$lang->instance->htmlStatusesClass['running'] = 'success';
$lang->instance->htmlStatusesClass['stopped'] = 'default';
$lang->instance->htmlStatusesClass['abnormal'] = 'danger';
$lang->instance->htmlStatusesClass['istallationFailure'] = 'danger';
$lang->instance->htmlStatusesClass['busy'] = "warning";
$lang->instance->memOptions = array();
$lang->instance->memOptions[128 * 1024] = '128MB';
$lang->instance->memOptions[256 * 1024] = '256MB';
$lang->instance->memOptions[512 * 1024] = '512MB';
$lang->instance->memOptions[1024 * 1024] = '1GB';
$lang->instance->memOptions[2048 * 1024] = '2GB';
$lang->instance->memOptions[4096 * 1024] = '4GB';
$lang->instance->memOptions[8192 * 1024] = '8GB';
$lang->instance->memOptions[16384 * 1024] = '16GB';
$lang->instance->memOptions[32768 * 1024] = '32GB';
$lang->instance->componentFields = array();
$lang->instance->componentFields['replicas'] = 'Number of replicas';
$lang->instance->componentFields['cpu_limit'] = 'CPU';
$lang->instance->componentFields['mem_limit'] = 'Memory';
$lang->instance->notices = array();
$lang->instance->notices['success'] = 'Success';
$lang->instance->notices['fail'] = 'failed';
$lang->instance->notices['error'] = 'error';
$lang->instance->notices['confirmStart'] = 'Are you sure to start the application?';
$lang->instance->notices['confirmStop'] = 'Are you sure to close this application?';
$lang->instance->notices['confirmUninstall'] = 'Are you sure to delete this application?';
$lang->instance->notices['startSuccess'] = 'Successfully started';
$lang->instance->notices['startFailure'] = 'Start failed';
$lang->instance->notices['stopSuccess'] = 'Close successfully';
$lang->instance->notices['stopFail'] = 'Close failed';
$lang->instance->notices['uninstallSuccess'] = 'Successfully deleted';
$lang->instance->notices['uninstallFailure'] = 'Delete failed';
$lang->instance->notices['iinstallSuccess'] = 'Installation successful';
$lang->instance->notices['iinstallFailure'] = 'Installation failed';
$lang->instance->notices['upgradeSuccess'] = 'Upgrade successful';
$lang->instance->notices['upgradeFailure'] = 'Upgrade failed';
$lang->instance->notices['backupSuccess'] = 'Backup task submitted';
$lang->instance->notices['backupFailure'] = 'Backup failed';
$lang->instance->notices['restoreSuccess'] = 'The rollback task has been submitted';
$lang->instance->notices['restoreFailure'] = 'Rollback failed';
$lang->instance->notices['deleteSuccess'] = 'DeleteSuccess';
$lang->instance->notices['deleteFail'] = 'Delete failed';
$lang->instance->notices['starting'] = 'Starting, please wait...';
$lang->instance->notices['stopping'] = 'Closing, please wait...';
$lang->instance->notices['istalling'] = 'Installing, please wait...';
$lang->instance->notices['uninstalling'] = 'Deleting, please wait...';
$lang->instance->notices['upgrading'] = 'Upgrading, please wait...';
$lang->instance->notices['backup'] = 'Backing up, please wait...';
$lang->instance->notices['restoring'] = 'Rolling back, please wait...';
$lang->instance->notices['deleting'] = 'Deleting, please wait...';
$lang->instance->notices['adjusting'] = 'Adjusting, please wait...';
$lang->instance->notices['switching'] = 'Submitting, please wait...';
$lang->instance->notices['setting'] = 'Submitting, please wait...';
$lang->instance->notices['confirmInstall'] = 'Are you sure you want to install (%s)?';
$lang->instance->notices['confirmUpgrade'] = 'Are you sure you want to upgrade to the latest version?';
$lang->instance->notices['confirmBackup'] = 'Are you sure you want to backup?';
$lang->instance->notices['confirmRestore'] = 'This operation will overwrite the current data with the backed up data. Are you sure you want to rollback?';
$lang->instance->notices['confirmDelete'] = 'Are you sure you want to delete the backup data?';
$lang->instance->notices['adjustMemory'] = 'Are you sure you want to adjust the middle memory?';
$lang->instance->notices['switchLDAP'] = 'Modifying LDAP will restart the service. Are you sure you want to modify LDAP?';
$lang->instance->notices['enableLDAPFailed'] = 'Enable LDAP failed';
$lang->instance->notices['disableLDAPFailed'] = 'Disable LDAP failed';
$lang->instance->notices['enableLDAPSuccess'] = 'Enable LDAP successfully';
$lang->instance->notices['disableLDAPSuccess'] = 'Disable LDAP successfully';
$lang->instance->notices['switchSMTP'] = 'Modifying SMTP will restart the service. Are you sure you want to modify SMTP?';
$lang->instance->notices['enableSMTPFailed'] = 'Enable SMTP failed';
$lang->instance->notices['disableSMTPFailed'] = 'Disable SMTP failed';
$lang->instance->notices['enableSMTPSuccess'] = 'Enable SMTP successfully';
$lang->instance->notices['disableSMTPSuccess'] = 'Disable SMTP successfully';
$lang->instance->notices['confirmCustom'] = 'After modifying the custom configuration, the service will automatically restart to make the configuration effective.';
$lang->instance->notices['required'] = 'cannot be empty';
$lang->instance->nameChangeTo = '%s is modified to %s.';
$lang->instance->versionChangeTo = 'Upgrade %s to %s.';
$lang->instance->toSeniorSerial = 'Upgrade from %s to %s.';
$lang->instance->adjustMemorySize = 'It is recommended to adjust the memory to %s.';
$lang->instance->enableAutoBackup = 'Enable automatic backup';
$lang->instance->disableAutoBackup = 'Turn off automatic backup';
$lang->instance->InstanceNotExists = 'Service does not exist';
$lang->instance->capticasTooSmall = 'The number of replicas cannot be less than 1';
$lang->instance->empty = 'Currently no service available';
$lang->instance->noComponent = 'No component, click';
$lang->instance->noHigherVersion = 'No higher version found!';
$lang->instance->backupOnlyRunning = 'Only running status can be backed up';
$lang->instance->restoreOnlyRunning = 'Only running status can be rolled back';
$lang->instance->howToSelectDB = 'How to select';
$lang->instance->appLifeTip = 'The application installed on the demo account has a 30 minute limit and will be automatically deleted after 30 minutes.';
$lang->instance->serialDiff = 'View version differences';
$lang->instance->descOfSwitchSerial = 'You are currently using<strong>%s</strong>. If you want to experience more advanced features, you can upgrade to %s.';
$lang->instance->toSeniorAttention = 'Important reminder';
$lang->instance->toSeniorTips = "<ul class = 'text dealer '><li>After upgrading to the original version, it is not possible to revert back to the original version.</li><li>The Enterprise and Ultimate versions are available for a free trial of 6 months after installation.</li><li>After upgrading from the Open Source version to the Enterprise or Ultimate versions, the trial period can support up to 3 users,Please check the number of open source users. Exceeding the limit will render it unusable</After the upgrade is successful, the service will automatically restart</To avoid data loss, please make sure to backup your data before upgrading</Li></ul>";
$lang->instance->errors = new stdclass;
$lang->instance->errors->domainLength = 'The domain name length must be between 2 and 20 characters';
$lang->instance->errors->domainExists = 'The domain name is already in use, please use a different domain name.';
$lang->instance->errors->wrongDomainCharacter = 'Domain name can only be lowercase English alphabet and numbers';
$lang->instance->errors->noAppInfo = 'Failed to obtain application data, please try again later.';
$lang->instance->errors->notEnoughResource = 'Insufficient cluster resources';
$lang->instance->errors->notEnoughMemory = "The '%s' application requires %s memory, currently available memory is %s, and %s is still needed. Please expand memory resources or remove other services and try again";
$lang->instance->errors->restoreRunning = 'The current rollback is in progress, please wait for the current rollback to complete.';
$lang->instance->errors->noBackup = 'No backup data,';
$lang->instance->errors->wrongRequestData = 'The submitted data is incorrect. Please refresh the page and try again.';
$lang->instance->errors->noDBList = 'No database or inaccessible';
$lang->instance->errors->notFoundDB = 'The database cannot be found';
$lang->instance->errors->dbNameIsEmpty = 'Database name is empty';
$lang->instance->errors->faultToAdjustMemory = 'Failed to adjust memory';
$lang->instance->errors->switchLDAPFailed = 'Modifying LDAP settings failed';
$lang->instance->errors->switchSMTPFailed = 'Modifying SMTP settings failed';
$lang->instance->errors->updateCustomimFailed = 'Modifying custom configuration failed';
$lang->instance->errors->FailToSenior = 'Upgrade to Advanced version failed';
$lang->instance->errors->failedToUpdateDomain = 'Failed to update domain name';
+3 -3
View File
@@ -27,7 +27,6 @@ function checkItem()
function selectServer(event)
{
var server = $(event.target).val();
console.log(server);
if(server) loadPage($.createLink('repo', 'import', 'server=' + server));
}
@@ -36,11 +35,12 @@ function loadProductProjects(event)
const $target = $(event.target);
const $currentRow = $target.closest('tr');
const products = $target.val();
const projects = $currentRow.find('.form-batch-input[data-name="projects"]');
const projects = $currentRow.find('div.picker-box[data-name="projects"]');
const projectIds = $(projects).val();
$.post($.createLink('repo', 'ajaxProjectsOfProducts'), {products : products, projects: projectIds, number : 1}, function(response)
{
$(projects).html(response);
var items = JSON.parse(response);
$(projects).zui('picker').render({items: items});
});
}
+3 -2
View File
@@ -1,6 +1,7 @@
<?php
global $lang, $app;
$app->loadLang('instance');
$app->loadLang('backup');
$config->system->dtable = new stdclass();
@@ -27,7 +28,7 @@ $config->system->dtable->dbList->fieldList['actions']['list']['management']['hin
$config->system->dtable->backup = new stdclass();
$config->system->dtable->backup->fieldList['time']['title'] = $lang->system->backup->time;
$config->system->dtable->backup->fieldList['time']['title'] = $lang->backup->time;
$config->system->dtable->backup->fieldList['time']['type'] = 'datetime';
$config->system->dtable->backup->fieldList['backupPerson']['title'] = $lang->system->backup->backupPerson;
@@ -40,7 +41,7 @@ $config->system->dtable->backup->fieldList['actions']['type'] = 'actions';
$config->system->dtable->backup->fieldList['actions']['menu'] = array('restore', 'delete');
$config->system->dtable->backup->fieldList['actions']['list']['restore']['icon'] = 'history';
$config->system->dtable->backup->fieldList['actions']['list']['restore']['hint'] = $lang->system->backup->restore;
$config->system->dtable->backup->fieldList['actions']['list']['restore']['hint'] = $lang->backup->restore;
$config->system->dtable->backup->fieldList['actions']['list']['restore']['url'] = array('module' => 'backup', 'method' => 'restore', 'params' => 'time={time}');
$config->system->dtable->backup->fieldList['actions']['list']['restore']['data-confirm'] = $lang->system->backup->confirmDelete;
+247
View File
@@ -0,0 +1,247 @@
<?php
$lang->system->dashboard = 'Dashboard';
$lang->system->systemInfo = 'System information';
$lang->system->dbManagement = 'Database management';
$lang->system->ldapManagement = 'LDAP';
$lang->system->dbList = 'Database list';
$lang->system->dbName = 'Name';
$lang->system->dbStatus = 'Status';
$lang->system->dbType = 'Type';
$lang->system->action = 'Action';
$lang->system->management = 'Management';
$lang->system->visit = 'Visit';
$lang->system->close = 'Close';
$lang->system->installLDAP = 'Install LDAP';
$lang->system->editLDAP = 'Edit';
$lang->system->LDAPInfo = 'LDAP information';
$lang->system->accountInfo = 'Account information';
$lang->system->advance = 'Senior';
$lang->system->verify = 'Check';
$lang->system->copy = 'Copy';
$lang->system->copySuccess = 'Copied to clipboard';
$lang->system->cneStatus = 'Platform status';
$lang->system->cneStatistic = 'Resource statistics';
$lang->system->latestDynamic = 'Latest News';
$lang->system->nodeQuantity = 'Nodes';
$lang->system->serviceQuantity = 'Number of services';
$lang->system->cpuUsage = 'CPU(Core)';
$lang->system->memUsage = 'Memory(GB)';
/* LDAP */
$lang->system->LDAP = new stdclass;
$lang->system->LDAP->info = 'LDAP infomation';
$lang->system->LDAP->ldapEnabled = 'Enable LDAP';
$lang->system->LDAP->ldapQucheng = 'Built in Qucheng';
$lang->system->LDAP->ldapSource = 'Source';
$lang->system->LDAP->ldapInstall = 'Install and Enable';
$lang->system->LDAP->ldapUpdate = 'Update';
$lang->system->LDAP->accountInfo = 'Account info';
$lang->system->LDAP->account = 'Account';
$lang->system->LDAP->password = 'Password';
$lang->system->LDAP->ldapUsername = 'Username';
$lang->system->LDAP->ldapName = 'Name';
$lang->system->LDAP->host = 'Host';
$lang->system->LDAP->port = 'Port';
$lang->system->LDAP->ldapRoot = 'Root node';
$lang->system->LDAP->filterUser = 'User filtering';
$lang->system->LDAP->email = 'Mail Fields';
$lang->system->LDAP->extraAccount = 'Account Field';
$lang->system->LDAP->ldapAdvance = 'Advanced setting';
$lang->system->LDAP->updateLDAP = 'Update LDAP';
$lang->system->LDAP->updateInstance = 'Update services associated with LDAP';
$lang->system->LDAP->updatingProgress = 'Updating %s services remaining.';
$lang->system->ldapTypeList = array();
$lang->system->ldapTypeList['qucheng'] = 'Built in Qucheng';
$lang->system->ldapTypeList['extra'] = 'External mapping';
/* OSS */
$lang->system->oss = new stdclass;
$lang->system->oss->common = 'Object Storage';
$lang->system->oss->appURL = 'Application address';
$lang->system->oss->user = 'User name';
$lang->system->oss->password = 'Password';
$lang->system->oss->manage = 'Manage';
$lang->system->oss->apiURL = 'API address';
$lang->system->oss->accessKey = 'Access Key';
$lang->system->oss->secretKey = 'Secret Key';
/* SMTP */
$lang->system->SMTP = new stdclass;
$lang->system->SMTP->common = 'Mailbox configuration';
$lang->system->SMTP->enabled = 'Enable SMTP';
$lang->system->SMTP->install = 'Install';
$lang->system->SMTP->update = 'Update';
$lang->system->SMTP->edit = 'Edit';
$lang->system->SMTP->editSMTP = 'Edit SMTP';
$lang->system->SMTP->account = 'Sending email';
$lang->system->SMTP->password = 'Password';
$lang->system->SMTP->host = 'SMTP Server';
$lang->system->SMTP->port = 'SMTP Port';
$lang->system->SMTP->save = 'Save';
/* Domain */
$lang->system->customDomain = 'New domain name';
$lang->system->certPem = 'Public-key certificate';
$lang->system->certKey = 'Private-key';
$lang->system->domain = new stdclass;
$lang->system->domain->common = 'Domain management';
$lang->system->domain->editDomain = 'Modifying Domain name Configuration';
$lang->system->domain->config = 'Configure domain name and certificate';
$lang->system->domain->currentDomain = 'Current domain name';
$lang->system->domain->oldDomain = 'Old domain name';
$lang->system->domain->newDomain = 'New domain name';
$lang->system->domain->expiredDate = 'Certificate expiration time';
$lang->system->domain->uploadCert = 'Upload certificate (only supports pan domain name certificate)';
$lang->system->domain->notReuseOldDomain = 'The default domain name cannot be changed back after using the custom domain name';
$lang->system->domain->setDNS = 'It is recommended to perform DNS resolution before modifying the domain name,';
$lang->system->domain->dnsHelperLink = 'Click to view the help document';
$lang->system->domain->updateInstancesDomain = 'Update the domain name of the installed service';
$lang->system->domain->totalOldDomain = 'A total of %s.';
$lang->system->domain->updatingProgress = 'Updating, %s remaining,';
$lang->system->domain->updating = 'Updating';
$lang->system->SLB = new stdclass;
$lang->system->SLB->common = 'Load Balance';
$lang->system->SLB->config = 'Configure load balancing';
$lang->system->SLB->edit = 'Modify load balancing';
$lang->system->SLB->ipPool = 'IP segment';
$lang->system->SLB->ipPoolExample = 'Example: 192.168.10.0/24 or 192.168.10.0-192.168.10.100';
$lang->system->SLB->installing = 'Configuring load balancing';
$lang->system->SLB->leftSeconds = 'Expected Remaining';
$lang->system->SLB->second = 'Second';
$lang->system->notices = new stdclass;
$lang->system->notices->success = 'Success';
$lang->system->notices->fail = 'Fail';
$lang->system->notices->attention = 'Attention';
$lang->system->notices->noLDAP = 'Unable to find LDAP configuration data';
$lang->system->notices->ldapUsed = '%s services have been associated with LDAP';
$lang->system->notices->ldapInstallSuccess = 'LDAP installation successful';
$lang->system->notices->ldapUpdateSuccess = 'LDAP update successful';
$lang->system->notices->confirmUpdateLDAP = 'After modifying LDAP, it will automatically update and restart the associated services. Are you sure you want to modify it?';
$lang->system->notices->verifyLDAPSuccess = 'Verifying LDAP successfully!';
$lang->system->notices->fillAllRequiredFields = 'Please fill in all required items!';
$lang->system->notices->smtpInstallSuccess = 'LDAP installation successful';
$lang->system->notices->smtpUpdateSuccess = 'LDAP update successful';
$lang->system->notices->smtpWhiteList = "To prevent emails from being blocked, please set the sender's email address as a whitelist in the email server";
$lang->system->notices->smtpAuthCode = 'Some email addresses require separate authorization codes to be filled out. Please refer to the relevant email settings for specific inquiries';
$lang->system->notices->smtpUsed = '%s services are associated with SMTP';
$lang->system->notices->verifySMTPSuccess = 'Verification successful!';
$lang->system->notices->pleaseCheckSMTPInfo = 'Verification failed! Please check if the username and password are correct';
$lang->system->notices->confirmUpdateDomain = 'After modifying the domain name, the domain name of the installed service will be automatically updated. Are you sure you want to modify it?';
$lang->system->notices->updateDomainSuccess = 'The domain name was successfully modified.';
$lang->system->notices->configSLBSuccess = 'Successfully configured load balancing.';
$lang->system->notices->validCert = 'Verification successful';
$lang->system->errors = new stdclass;
$lang->system->errors->notFoundDB = 'The database cannot be found';
$lang->system->errors->notFoundLDAP = 'Unable to find LDAP data';
$lang->system->errors->dbNameIsEmpty = 'Database name is empty';
$lang->system->errors->notSupportedLDAP = 'Currently, this type of LDAP is not supported';
$lang->system->errors->failToInstallLDAP = 'Installation of built-in LDAP failed';
$lang->system->errors->failToInstallExtraLDAP = 'Failed to connect to external LDAP';
$lang->system->errors->failToUpdateExtraLDAP = 'Failed to update external LDAP';
$lang->system->errors->failToUninstallQuChengLDAP = 'Failed to uninstall channel into internal LDAP';
$lang->system->errors->failToUninstallExtraLDAP = 'Uninstalling external LDAP failed';
$lang->system->errors->failToDeleteLDAPSnippet = 'Failed to delete LDAP fragment';
$lang->system->errors->verifyLDAPFailed = 'Verify LDAP failed';
$lang->system->errors->LDAPLinked = 'A service has already been associated with LDAP';
$lang->system->errors->SMTPLinked = 'A service has already been associated with an SMTP service';
$lang->system->errors->failGetOssAccount = 'Failed to obtain the Object storage account';
$lang->system->errors->failToInstallSMTP = 'Failed to install SMTP';
$lang->system->errors->failToUninstallSMTP = 'Uninstalling SMTP failed';
$lang->system->errors->failToUpdateSMTP = 'Failed to update SMTP';
$lang->system->errors->verifySMTPFailed = 'Verify SMTP failed';
$lang->system->errors->notFoundSMTPApp = 'Unable to find SMTP proxy application';
$lang->system->errors->notFoundSMTPService = 'Unable to find SMTP proxy service';
$lang->system->errors->domainIsRequired = 'Domain name must be filled in';
$lang->system->errors->invalidDomain = 'Invalid domain name or formatting error. The domain name only allows Minuscule, numbers, dots (.) and middle horizontal lines (-)';
$lang->system->errors->failToUpdateDomain = 'Failed to update domain name';
$lang->system->errors->forbiddenOriginalDomain = 'Cannot be modified as the platform default domain name';
$lang->system->errors->newDomainIsSameWithOld = 'The new domain name cannot be the same as the original domain name';
$lang->system->errors->failedToConfigSLB = 'Configuration load balancing failed';
$lang->system->errors->wrongIPRange = 'IP segment format error, please refer to the example format' . $lang->system->SLB->ipPoolExample;
$lang->system->errors->ippoolRequired = 'IP segment cannot be empty';
$lang->system->errors->failedToInstallSLBComponent = 'Failed to install load balancing component';
$lang->system->errors->tryReinstallSLB = 'The installation of load balancing components timed out, please try again.';
$lang->system->backup = new stdclass();
$lang->system->backup->common = 'System backup';
$lang->system->backup->shortCommon = 'Backup';
$lang->system->backup->systemInfo = 'System Information';
$lang->system->backup->index = 'Backup homepage';
$lang->system->backup->history = 'Backup records';
$lang->system->backup->delete = 'Delete backup';
$lang->system->backup->backup = 'Backup';
$lang->system->backup->change = 'Retention time';
$lang->system->backup->changeAB = 'modify';
$lang->system->backup->rmPHPHeader = 'Remove security settings';
$lang->system->backup->setting = 'Setting';
$lang->system->backup->backupPerson = 'Backup person';
$lang->system->backup->type = 'Backup type';
$lang->system->backup->settingAction = 'Backup Settings';
$lang->system->backup->name = 'Name';
$lang->system->backup->currentVersion = 'Current version';
$lang->system->backup->latestVersion = 'Latest Version';
$lang->system->backup->files = 'Backup files';
$lang->system->backup->allCount = 'Total number of files';
$lang->system->backup->count = 'Number of backup files';
$lang->system->backup->size = 'size';
$lang->system->backup->status = 'Status';
$lang->system->backup->running = 'Running';
$lang->system->backup->done = 'Done';
$lang->system->backup->backupName = 'Backup name:';
$lang->system->backup->backupSql = 'Backup database:';
$lang->system->backup->backupFile = 'Backup attachment:';
$lang->system->backup->restoreImage = 'Rollback platform image:';
$lang->system->backup->restoreSQL = 'Rollback database:';
$lang->system->backup->restoreFile = 'Rollback attachment:';
$lang->system->backup->checkService = 'Check Service:';
$lang->system->backup->upgrade = 'Upgrade';
$lang->system->backup->rollback = 'Rollback';
$lang->system->backup->restart = 'Restart';
$lang->system->backup->delete = 'Delte';
$lang->system->backup->restoreProgress['doing'] = 'Doing';
$lang->system->backup->restoreProgress['done'] = 'Done';
$lang->system->backup->typeList['manual'] = 'Manual backup';
$lang->system->backup->typeList['upgrade'] = 'Automatic backup before upgrade';
$lang->system->backup->typeList['restore'] = 'Automatic backup before rollback';
$lang->system->backup->waitting = '<span id="backupType"></span>In progress,please wait...';
$lang->system->backup->progressSQL = 'In backup,%s has been backed up';
$lang->system->backup->progressAttach = 'There are a total of %s files in the backup, and %s files have already been backed up';
$lang->system->backup->progressCode = 'There are a total of %s files in the backup, and %s files have already been backed up';
$lang->system->backup->confirmDelete = 'Do you want to delte the backup';
$lang->system->backup->confirmRestore = 'Please confirm whether to roallback?';
$lang->system->backup->holdDays = 'Backup has been retained for the last %s days';
$lang->system->backup->copiedFail = 'Files that failed to copy:';
$lang->system->backup->restoreTip = 'The restore function only restores the database.';
$lang->system->backup->versionInfo = 'Click to view the new version introduction';
$lang->system->backup->confirmUpgrade = 'Please confirm whether to upgrade the channel to a platform?';
$lang->system->backup->upgrading = 'Upgrading';
$lang->system->backup->backupTitle = 'Backing up the channel platform...';
$lang->system->backup->restoreTitle = 'Rolling back the channel platform...';
$lang->system->backup->backingUp = 'In progress';
$lang->system->backup->restoring = 'In progress';
$lang->system->backup->success = new stdclass();
$lang->system->backup->success->upgrade = 'Upgrade successful!';
$lang->system->backup->success->degrade = 'Successfully downgraded!';
$lang->system->backup->error = new stdclass();
$lang->system->backup->error->upgradeFail = "Upgrade failed!";
$lang->system->backup->error->upgradeOvertime = "Upgrade timed out!";
$lang->system->backup->error->degradeFail = "Downgrade failed!";
$lang->system->backup->error->beenLatestVersion = "It is already the latest version, no upgrade required!";
$lang->system->backup->error->requireVersion = "Version number must be uploaded!";
+182 -203
View File
@@ -18,44 +18,42 @@ $lang->system->accountInfo = 'Account information';
$lang->system->advance = 'Senior';
$lang->system->verify = 'Check';
$lang->system->copy = 'Copy';
$lang->system->copySuccess = '已复制到剪切板';
$lang->system->cneStatus = '平台状态';
$lang->system->cneStatistic = '资源统计';
$lang->system->latestDynamic = '最新动态';
$lang->system->nodeQuantity = '节点数';
$lang->system->serviceQuantity = '服务数';
$lang->system->cpuUsage = 'CPU(核)';
$lang->system->memUsage = '内存(GB)';
$lang->system->copySuccess = 'Copied to clipboard';
$lang->system->cneStatus = 'Platform status';
$lang->system->cneStatistic = 'Resource statistics';
$lang->system->latestDynamic = 'Latest News';
$lang->system->nodeQuantity = 'Nodes';
$lang->system->serviceQuantity = 'Number of services';
$lang->system->cpuUsage = 'CPU(Core)';
$lang->system->memUsage = 'Memory(GB)';
/* LDAP */
$lang->system->LDAP = new stdclass;
$lang->system->LDAP->info = 'LDAP信息';
$lang->system->LDAP->ldapEnabled = '启用LDAP';
$lang->system->LDAP->ldapQucheng = '渠成内置';
$lang->system->LDAP->ldapSource = '来源';
$lang->system->LDAP->ldapInstall = '安装并启用';
$lang->system->LDAP->ldapUpdate = '更新';
$lang->system->LDAP->accountInfo = '账号信息';
$lang->system->LDAP->account = '账号';
$lang->system->LDAP->password = '密码';
$lang->system->LDAP->ldapUsername = '用户名';
$lang->system->LDAP->ldapName = '名称';
$lang->system->LDAP->host = '主机';
$lang->system->LDAP->port = '端口';
$lang->system->LDAP->account = '账号';
$lang->system->LDAP->password = '密码';
$lang->system->LDAP->ldapRoot = '根节点';
$lang->system->LDAP->filterUser = '用户过滤';
$lang->system->LDAP->email = '邮件字段';
$lang->system->LDAP->extraAccount = '用户名字段';
$lang->system->LDAP->ldapAdvance = '高级设置';
$lang->system->LDAP->updateLDAP = '更新LDAP';
$lang->system->LDAP->updateInstance = '更新已关联LDAP的服务';
$lang->system->LDAP->updatingProgress = '更新中...剩余 %s 个服务。';
$lang->system->LDAP->info = 'LDAP infomation';
$lang->system->LDAP->ldapEnabled = 'Enable LDAP';
$lang->system->LDAP->ldapQucheng = 'Built in Qucheng';
$lang->system->LDAP->ldapSource = 'Source';
$lang->system->LDAP->ldapInstall = 'Install and Enable';
$lang->system->LDAP->ldapUpdate = 'Update';
$lang->system->LDAP->accountInfo = 'Account info';
$lang->system->LDAP->account = 'Account';
$lang->system->LDAP->password = 'Password';
$lang->system->LDAP->ldapUsername = 'Username';
$lang->system->LDAP->ldapName = 'Name';
$lang->system->LDAP->host = 'Host';
$lang->system->LDAP->port = 'Port';
$lang->system->LDAP->ldapRoot = 'Root node';
$lang->system->LDAP->filterUser = 'User filtering';
$lang->system->LDAP->email = 'Mail Fields';
$lang->system->LDAP->extraAccount = 'Account Field';
$lang->system->LDAP->ldapAdvance = 'Advanced setting';
$lang->system->LDAP->updateLDAP = 'Update LDAP';
$lang->system->LDAP->updateInstance = 'Update services associated with LDAP';
$lang->system->LDAP->updatingProgress = 'Updating %s services remaining.';
$lang->system->ldapTypeList = array();
$lang->system->ldapTypeList['qucheng'] = '渠成内置';
$lang->system->ldapTypeList['extra'] = '外部映射';
$lang->system->ldapTypeList['qucheng'] = 'Built in Qucheng';
$lang->system->ldapTypeList['extra'] = 'External mapping';
/* OSS */
$lang->system->oss = new stdclass;
@@ -70,199 +68,180 @@ $lang->system->oss->secretKey = 'Secret Key';
/* SMTP */
$lang->system->SMTP = new stdclass;
$lang->system->SMTP->common = '邮箱配置';
$lang->system->SMTP->enabled = '启用SMTP';
$lang->system->SMTP->install = '安装';
$lang->system->SMTP->update = '更新';
$lang->system->SMTP->edit = '编辑';
$lang->system->SMTP->editSMTP = '编辑SMTP';
$lang->system->SMTP->account = '发信邮箱';
$lang->system->SMTP->password = '密码';
$lang->system->SMTP->host = 'SMTP服务器';
$lang->system->SMTP->port = 'SMTP端口';
$lang->system->SMTP->save = '保存';
$lang->system->SMTP->common = 'Mailbox configuration';
$lang->system->SMTP->enabled = 'Enable SMTP';
$lang->system->SMTP->install = 'Install';
$lang->system->SMTP->update = 'Update';
$lang->system->SMTP->edit = 'Edit';
$lang->system->SMTP->editSMTP = 'Edit SMTP';
$lang->system->SMTP->account = 'Sending email';
$lang->system->SMTP->password = 'Password';
$lang->system->SMTP->host = 'SMTP Server';
$lang->system->SMTP->port = 'SMTP Port';
$lang->system->SMTP->save = 'Save';
/* Domain */
$lang->system->customDomain = '新域名';
$lang->system->certPem = '公钥证书';
$lang->system->certKey = '私钥';
$lang->system->customDomain = 'New domain name';
$lang->system->certPem = 'Public-key certificate';
$lang->system->certKey = 'Private-key';
$lang->system->domain = new stdclass;
$lang->system->domain->common = '域名管理';
$lang->system->domain->editDomain = '修改域名配置';
$lang->system->domain->config = '配置域名和证书';
$lang->system->domain->currentDomain = '当前域名';
$lang->system->domain->oldDomain = '旧域名';
$lang->system->domain->newDomain = '新域名';
$lang->system->domain->expiredDate = '证书过期时间';
$lang->system->domain->uploadCert = '上传证书(仅支持泛域名证书)';
$lang->system->domain->common = 'Domain management';
$lang->system->domain->editDomain = 'Modifying Domain name Configuration';
$lang->system->domain->config = 'Configure domain name and certificate';
$lang->system->domain->currentDomain = 'Current domain name';
$lang->system->domain->oldDomain = 'Old domain name';
$lang->system->domain->newDomain = 'New domain name';
$lang->system->domain->expiredDate = 'Certificate expiration time';
$lang->system->domain->uploadCert = 'Upload certificate (only supports pan domain name certificate)';
$lang->system->domain->notReuseOldDomain = '使用自定义域名后无法改回默认域名';
$lang->system->domain->setDNS = '建议修改域名前请先进行DNS解析,';
$lang->system->domain->dnsHelperLink = '点击查看帮助文档';
$lang->system->domain->updateInstancesDomain = '更新已安装服务的域名';
$lang->system->domain->totalOldDomain = '共 %s 个。';
$lang->system->domain->updatingProgress = '更新中...,剩余 %s 个,';
$lang->system->domain->updating = '更新中...';
$lang->system->domain->notReuseOldDomain = 'The default domain name cannot be changed back after using the custom domain name';
$lang->system->domain->setDNS = 'It is recommended to perform DNS resolution before modifying the domain name,';
$lang->system->domain->dnsHelperLink = 'Click to view the help document';
$lang->system->domain->updateInstancesDomain = 'Update the domain name of the installed service';
$lang->system->domain->totalOldDomain = 'A total of %s.';
$lang->system->domain->updatingProgress = 'Updating, %s remaining,';
$lang->system->domain->updating = 'Updating';
$lang->system->SLB = new stdclass;
$lang->system->SLB->common = '负载均衡';
$lang->system->SLB->config = '配置负载均衡';
$lang->system->SLB->edit = '修改负载均衡';
$lang->system->SLB->ipPool = 'IP段';
$lang->system->SLB->ipPoolExample = '示例:192.168.10.0/24或者192.168.10.0-192.168.10.100';
$lang->system->SLB->installing = '正在配置负载均衡';
$lang->system->SLB->leftSeconds = '预计剩余';
$lang->system->SLB->second = '秒';
$lang->system->SLB->common = 'Load Balance';
$lang->system->SLB->config = 'Configure load balancing';
$lang->system->SLB->edit = 'Modify load balancing';
$lang->system->SLB->ipPool = 'IP segment';
$lang->system->SLB->ipPoolExample = 'Example: 192.168.10.0/24 or 192.168.10.0-192.168.10.100';
$lang->system->SLB->installing = 'Configuring load balancing';
$lang->system->SLB->leftSeconds = 'Expected Remaining';
$lang->system->SLB->second = 'Second';
$lang->system->notices = new stdclass;
$lang->system->notices->success = '成功';
$lang->system->notices->fail = '失败';
$lang->system->notices->attention = '注意';
$lang->system->notices->noLDAP = '找不到LDAP配置数据';
$lang->system->notices->ldapUsed = '%s个服务已关联了LDAP';
$lang->system->notices->ldapInstallSuccess = 'LDAP安装成功';
$lang->system->notices->ldapUpdateSuccess = 'LDAP更新成功';
$lang->system->notices->confirmUpdateLDAP = '修改LDAP后,会自动更新并重启已关联的服务,确定要修改吗?';
$lang->system->notices->verifyLDAPSuccess = '校验LDAP成功!';
$lang->system->notices->fillAllRequiredFields = '请填写全部必填项!';
$lang->system->notices->smtpInstallSuccess = 'LDAP安装成功';
$lang->system->notices->smtpUpdateSuccess = 'LDAP更新成功';
$lang->system->notices->smtpWhiteList = '为防止邮件被屏蔽,请在邮件服务器里面将发信邮箱设为白名单';
$lang->system->notices->smtpAuthCode = '有些邮箱要填写单独申请的授权码,具体请到邮箱相关设置查询';
$lang->system->notices->smtpUsed = '%s 个服务关联了SMTP';
$lang->system->notices->verifySMTPSuccess = '校验成功!';
$lang->system->notices->pleaseCheckSMTPInfo = '校验失败!请检查用户名和密码是否正确';
$lang->system->notices->confirmUpdateDomain = '修改域名后,会自动更新已安装服务的域名,确定要修改吗?';
$lang->system->notices->updateDomainSuccess = '域名修改成功。';
$lang->system->notices->configSLBSuccess = '配置负载均衡成功。';
$lang->system->notices->validCert = '校验成功';
$lang->system->notices->success = 'Success';
$lang->system->notices->fail = 'Fail';
$lang->system->notices->attention = 'Attention';
$lang->system->notices->noLDAP = 'Unable to find LDAP configuration data';
$lang->system->notices->ldapUsed = '%s services have been associated with LDAP';
$lang->system->notices->ldapInstallSuccess = 'LDAP installation successful';
$lang->system->notices->ldapUpdateSuccess = 'LDAP update successful';
$lang->system->notices->confirmUpdateLDAP = 'After modifying LDAP, it will automatically update and restart the associated services. Are you sure you want to modify it?';
$lang->system->notices->verifyLDAPSuccess = 'Verifying LDAP successfully!';
$lang->system->notices->fillAllRequiredFields = 'Please fill in all required items!';
$lang->system->notices->smtpInstallSuccess = 'LDAP installation successful';
$lang->system->notices->smtpUpdateSuccess = 'LDAP update successful';
$lang->system->notices->smtpWhiteList = "To prevent emails from being blocked, please set the sender's email address as a whitelist in the email server";
$lang->system->notices->smtpAuthCode = 'Some email addresses require separate authorization codes to be filled out. Please refer to the relevant email settings for specific inquiries';
$lang->system->notices->smtpUsed = '%s services are associated with SMTP';
$lang->system->notices->verifySMTPSuccess = 'Verification successful!';
$lang->system->notices->pleaseCheckSMTPInfo = 'Verification failed! Please check if the username and password are correct';
$lang->system->notices->confirmUpdateDomain = 'After modifying the domain name, the domain name of the installed service will be automatically updated. Are you sure you want to modify it?';
$lang->system->notices->updateDomainSuccess = 'The domain name was successfully modified.';
$lang->system->notices->configSLBSuccess = 'Successfully configured load balancing.';
$lang->system->notices->validCert = 'Verification successful';
$lang->system->errors = new stdclass;
$lang->system->errors->notFoundDB = '找不到该数据库';
$lang->system->errors->notFoundLDAP = '找不到LDAP数据';
$lang->system->errors->dbNameIsEmpty = '数据库名为空';
$lang->system->errors->notSupportedLDAP = '暂不支持该类型的LDAP';
$lang->system->errors->failToInstallLDAP = '安装内置LDAP失败';
$lang->system->errors->failToInstallExtraLDAP = '对接外部LDAP失败';
$lang->system->errors->failToUpdateExtraLDAP = '更新外部LDAP失败';
$lang->system->errors->failToUninstallQuChengLDAP = '卸载渠成内部LDAP失败';
$lang->system->errors->failToUninstallExtraLDAP = '卸载外部LDAP失败';
$lang->system->errors->failToDeleteLDAPSnippet = '删除LDAP片段失败';
$lang->system->errors->verifyLDAPFailed = '校验LDAP失败';
$lang->system->errors->LDAPLinked = '有服务已经关联了LDAP';
$lang->system->errors->SMTPLinked = '有服务已经关联了SMTP服务';
$lang->system->errors->failGetOssAccount = '获取对象存储账号失败';
$lang->system->errors->failToInstallSMTP = '安装SMTP失败';
$lang->system->errors->failToUninstallSMTP = '卸载SMTP失败';
$lang->system->errors->failToUpdateSMTP = '更新SMTP失败';
$lang->system->errors->verifySMTPFailed = '校验SMTP失败';
$lang->system->errors->notFoundSMTPApp = '找不到SMTP代理应用';
$lang->system->errors->notFoundSMTPService = '找不到SMTP代理服务';
$lang->system->errors->domainIsRequired = '必须填写域名';
$lang->system->errors->invalidDomain = '无效的域名或格式错误。域名只允许小写字母、数字、点(.)和中横线(-)';
$lang->system->errors->failToUpdateDomain = '更新域名失败';
$lang->system->errors->forbiddenOriginalDomain = '不能修改为平台默认域名';
$lang->system->errors->newDomainIsSameWithOld = '新域名不能与原域名相同';
$lang->system->errors->failedToConfigSLB = '配置负载均衡失败';
$lang->system->errors->wrongIPRange = 'IP段格式错误,请参照示例格式,' . $lang->system->SLB->ipPoolExample;
$lang->system->errors->ippoolRequired = 'IP段不能为空';
$lang->system->errors->failedToInstallSLBComponent = '安装负载均衡组件失败';
$lang->system->errors->tryReinstallSLB = '安装负载均衡组件超时,请重试。';
$lang->system->errors->notFoundDB = 'The database cannot be found';
$lang->system->errors->notFoundLDAP = 'Unable to find LDAP data';
$lang->system->errors->dbNameIsEmpty = 'Database name is empty';
$lang->system->errors->notSupportedLDAP = 'Currently, this type of LDAP is not supported';
$lang->system->errors->failToInstallLDAP = 'Installation of built-in LDAP failed';
$lang->system->errors->failToInstallExtraLDAP = 'Failed to connect to external LDAP';
$lang->system->errors->failToUpdateExtraLDAP = 'Failed to update external LDAP';
$lang->system->errors->failToUninstallQuChengLDAP = 'Failed to uninstall channel into internal LDAP';
$lang->system->errors->failToUninstallExtraLDAP = 'Uninstalling external LDAP failed';
$lang->system->errors->failToDeleteLDAPSnippet = 'Failed to delete LDAP fragment';
$lang->system->errors->verifyLDAPFailed = 'Verify LDAP failed';
$lang->system->errors->LDAPLinked = 'A service has already been associated with LDAP';
$lang->system->errors->SMTPLinked = 'A service has already been associated with an SMTP service';
$lang->system->errors->failGetOssAccount = 'Failed to obtain the Object storage account';
$lang->system->errors->failToInstallSMTP = 'Failed to install SMTP';
$lang->system->errors->failToUninstallSMTP = 'Uninstalling SMTP failed';
$lang->system->errors->failToUpdateSMTP = 'Failed to update SMTP';
$lang->system->errors->verifySMTPFailed = 'Verify SMTP failed';
$lang->system->errors->notFoundSMTPApp = 'Unable to find SMTP proxy application';
$lang->system->errors->notFoundSMTPService = 'Unable to find SMTP proxy service';
$lang->system->errors->domainIsRequired = 'Domain name must be filled in';
$lang->system->errors->invalidDomain = 'Invalid domain name or formatting error. The domain name only allows Minuscule, numbers, dots (.) and middle horizontal lines (-)';
$lang->system->errors->failToUpdateDomain = 'Failed to update domain name';
$lang->system->errors->forbiddenOriginalDomain = 'Cannot be modified as the platform default domain name';
$lang->system->errors->newDomainIsSameWithOld = 'The new domain name cannot be the same as the original domain name';
$lang->system->errors->failedToConfigSLB = 'Configuration load balancing failed';
$lang->system->errors->wrongIPRange = 'IP segment format error, please refer to the example format' . $lang->system->SLB->ipPoolExample;
$lang->system->errors->ippoolRequired = 'IP segment cannot be empty';
$lang->system->errors->failedToInstallSLBComponent = 'Failed to install load balancing component';
$lang->system->errors->tryReinstallSLB = 'The installation of load balancing components timed out, please try again.';
$lang->system->backup = new stdclass();
$lang->system->backup->common = '系统备份';
$lang->system->backup->shortCommon = '备份';
$lang->system->backup->systemInfo = '系统信息';
$lang->system->backup->index = '备份首页';
$lang->system->backup->history = '备份记录';
$lang->system->backup->delete = '删除备份';
$lang->system->backup->backup = '备份';
$lang->system->backup->restore = '回滚';
$lang->system->backup->change = '保留时间';
$lang->system->backup->changeAB = '修改';
$lang->system->backup->rmPHPHeader = '去除安全设置';
$lang->system->backup->setting = '设置';
$lang->system->backup->backupPerson = '备份人';
$lang->system->backup->type = '备份类型';
$lang->system->backup->common = 'System backup';
$lang->system->backup->shortCommon = 'Backup';
$lang->system->backup->systemInfo = 'System Information';
$lang->system->backup->index = 'Backup homepage';
$lang->system->backup->history = 'Backup records';
$lang->system->backup->delete = 'Delete backup';
$lang->system->backup->backup = 'Backup';
$lang->system->backup->change = 'Retention time';
$lang->system->backup->changeAB = 'modify';
$lang->system->backup->rmPHPHeader = 'Remove security settings';
$lang->system->backup->setting = 'Setting';
$lang->system->backup->backupPerson = 'Backup person';
$lang->system->backup->type = 'Backup type';
$lang->system->backup->settingAction = '备份设置';
$lang->system->backup->settingAction = 'Backup Settings';
$lang->system->backup->name = '名称';
$lang->system->backup->currentVersion = '当前版本';
$lang->system->backup->latestVersion = '最新版本';
$lang->system->backup->name = 'Name';
$lang->system->backup->currentVersion = 'Current version';
$lang->system->backup->latestVersion = 'Latest Version';
$lang->system->backup->time = '备份时间';
$lang->system->backup->files = '备份文件';
$lang->system->backup->allCount = '总文件数';
$lang->system->backup->count = '备份文件数';
$lang->system->backup->size = '大小';
$lang->system->backup->status = '状态';
$lang->system->backup->running = '运行中';
$lang->system->backup->done = '完成';
$lang->system->backup->files = 'Backup files';
$lang->system->backup->allCount = 'Total number of files';
$lang->system->backup->count = 'Number of backup files';
$lang->system->backup->size = 'size';
$lang->system->backup->status = 'Status';
$lang->system->backup->running = 'Running';
$lang->system->backup->done = 'Done';
$lang->system->backup->backupName = '备份名称:';
$lang->system->backup->backupSql = '备份数据库:';
$lang->system->backup->backupFile = '备份附件:';
$lang->system->backup->restoreImage = '回滚平台镜像:';
$lang->system->backup->restoreSQL = '回滚数据库:';
$lang->system->backup->restoreFile = '回滚附件:';
$lang->system->backup->checkService = '检查服务:';
$lang->system->backup->backupName = 'Backup name:';
$lang->system->backup->backupSql = 'Backup database:';
$lang->system->backup->backupFile = 'Backup attachment:';
$lang->system->backup->restoreImage = 'Rollback platform image:';
$lang->system->backup->restoreSQL = 'Rollback database:';
$lang->system->backup->restoreFile = 'Rollback attachment:';
$lang->system->backup->checkService = 'Check Service:';
$lang->system->backup->upgrade = '升级';
$lang->system->backup->rollback = '回滚';
$lang->system->backup->restart = '重启';
$lang->system->backup->delete = '删除';
$lang->system->backup->upgrade = 'Upgrade';
$lang->system->backup->rollback = 'Rollback';
$lang->system->backup->restart = 'Restart';
$lang->system->backup->delete = 'Delte';
$lang->system->backup->statusList['success'] = '成功';
$lang->system->backup->statusList['fail'] = '失败';
$lang->system->backup->restoreProgress['doing'] = 'Doing';
$lang->system->backup->restoreProgress['done'] = 'Done';
$lang->system->backup->restoreProgress['doing'] = '进行中';
$lang->system->backup->restoreProgress['done'] = '完成';
$lang->system->backup->typeList['manual'] = 'Manual backup';
$lang->system->backup->typeList['upgrade'] = 'Automatic backup before upgrade';
$lang->system->backup->typeList['restore'] = 'Automatic backup before rollback';
$lang->system->backup->typeList['manual'] = '手动备份';
$lang->system->backup->typeList['upgrade'] = '升级前自动备份';
$lang->system->backup->typeList['restore'] = '回滚前自动备份';
$lang->system->backup->settingDir = '备份目录';
$lang->system->backup->settingList['nofile'] = '不备份附件和代码';
$lang->system->backup->settingList['nosafe'] = '不需要防下载PHP文件头';
$lang->system->backup->waitting = '<span id="backupType"></span>正在进行中,请稍候...';
$lang->system->backup->progressSQL = '备份中,已备份%s';
$lang->system->backup->progressAttach = '备份中,共有%s个文件,已经备份%s个';
$lang->system->backup->progressCode = '代码备份中,共有%s个文件,已经备份%s个';
$lang->system->backup->confirmDelete = '是否删除该备份?';
$lang->system->backup->confirmRestore = '请确认是否回滚?';
$lang->system->backup->holdDays = '备份保留最近 %s 天';
$lang->system->backup->copiedFail = '复制失败的文件:';
$lang->system->backup->restoreTip = '还原功能只还原数据库。';
$lang->system->backup->versionInfo = '点击查看新版本介绍';
$lang->system->backup->confirmUpgrade = '请确认是否升级渠成平台?';
$lang->system->backup->upgrading = '升级中';
$lang->system->backup->backupTitle = '正在备份 渠成平台...';
$lang->system->backup->restoreTitle = '正在回滚 渠成平台...';
$lang->system->backup->backingUp = '进行中';
$lang->system->backup->restoring = '进行中';
$lang->system->backup->waitting = '<span id="backupType"></span>In progress,please wait...';
$lang->system->backup->progressSQL = 'In backup,%s has been backed up';
$lang->system->backup->progressAttach = 'There are a total of %s files in the backup, and %s files have already been backed up';
$lang->system->backup->progressCode = 'There are a total of %s files in the backup, and %s files have already been backed up';
$lang->system->backup->confirmDelete = 'Do you want to delte the backup';
$lang->system->backup->confirmRestore = 'Please confirm whether to roallback?';
$lang->system->backup->holdDays = 'Backup has been retained for the last %s days';
$lang->system->backup->copiedFail = 'Files that failed to copy:';
$lang->system->backup->restoreTip = 'The restore function only restores the database.';
$lang->system->backup->versionInfo = 'Click to view the new version introduction';
$lang->system->backup->confirmUpgrade = 'Please confirm whether to upgrade the channel to a platform?';
$lang->system->backup->upgrading = 'Upgrading';
$lang->system->backup->backupTitle = 'Backing up the channel platform...';
$lang->system->backup->restoreTitle = 'Rolling back the channel platform...';
$lang->system->backup->backingUp = 'In progress';
$lang->system->backup->restoring = 'In progress';
$lang->system->backup->success = new stdclass();
$lang->system->backup->success->backup = '备份成功!';
$lang->system->backup->success->restore = '还原成功!';
$lang->system->backup->success->upgrade = '升级成功!';
$lang->system->backup->success->degrade = '降级成功!';
$lang->system->backup->success->upgrade = 'Upgrade successful!';
$lang->system->backup->success->degrade = 'Successfully downgraded!';
$lang->system->backup->error = new stdclass();
$lang->system->backup->error->noCreateDir = '备份目录不存在,也无法创建该目录';
$lang->system->backup->error->noWritable = "<code>%s</code> 不可写!请检查该目录权限,否则无法备份。";
$lang->system->backup->error->noDelete = "文件 %s 无法删除,修改权限或手工删除。";
$lang->system->backup->error->restoreSQL = "数据库还原失败,错误:%s";
$lang->system->backup->error->restoreFile = "附件还原失败,错误:%s";
$lang->system->backup->error->backupFile = "附件备份失败,错误:%s";
$lang->system->backup->error->backupCode = "代码备份失败,错误:%s";
$lang->system->backup->error->upgradeFail = "升级失败!";
$lang->system->backup->error->upgradeOvertime = "升级超时!";
$lang->system->backup->error->degradeFail = "降级失败!";
$lang->system->backup->error->beenLatestVersion = "已经是最新版,无需升级!";
$lang->system->backup->error->requireVersion = "必须上传版本号!";
$lang->system->backup->error->upgradeFail = "Upgrade failed!";
$lang->system->backup->error->upgradeOvertime = "Upgrade timed out!";
$lang->system->backup->error->degradeFail = "Downgrade failed!";
$lang->system->backup->error->beenLatestVersion = "It is already the latest version, no upgrade required!";
$lang->system->backup->error->requireVersion = "Version number must be uploaded!";
+247
View File
@@ -0,0 +1,247 @@
<?php
$lang->system->dashboard = 'Dashboard';
$lang->system->systemInfo = 'System information';
$lang->system->dbManagement = 'Database management';
$lang->system->ldapManagement = 'LDAP';
$lang->system->dbList = 'Database list';
$lang->system->dbName = 'Name';
$lang->system->dbStatus = 'Status';
$lang->system->dbType = 'Type';
$lang->system->action = 'Action';
$lang->system->management = 'Management';
$lang->system->visit = 'Visit';
$lang->system->close = 'Close';
$lang->system->installLDAP = 'Install LDAP';
$lang->system->editLDAP = 'Edit';
$lang->system->LDAPInfo = 'LDAP information';
$lang->system->accountInfo = 'Account information';
$lang->system->advance = 'Senior';
$lang->system->verify = 'Check';
$lang->system->copy = 'Copy';
$lang->system->copySuccess = 'Copied to clipboard';
$lang->system->cneStatus = 'Platform status';
$lang->system->cneStatistic = 'Resource statistics';
$lang->system->latestDynamic = 'Latest News';
$lang->system->nodeQuantity = 'Nodes';
$lang->system->serviceQuantity = 'Number of services';
$lang->system->cpuUsage = 'CPU(Core)';
$lang->system->memUsage = 'Memory(GB)';
/* LDAP */
$lang->system->LDAP = new stdclass;
$lang->system->LDAP->info = 'LDAP infomation';
$lang->system->LDAP->ldapEnabled = 'Enable LDAP';
$lang->system->LDAP->ldapQucheng = 'Built in Qucheng';
$lang->system->LDAP->ldapSource = 'Source';
$lang->system->LDAP->ldapInstall = 'Install and Enable';
$lang->system->LDAP->ldapUpdate = 'Update';
$lang->system->LDAP->accountInfo = 'Account info';
$lang->system->LDAP->account = 'Account';
$lang->system->LDAP->password = 'Password';
$lang->system->LDAP->ldapUsername = 'Username';
$lang->system->LDAP->ldapName = 'Name';
$lang->system->LDAP->host = 'Host';
$lang->system->LDAP->port = 'Port';
$lang->system->LDAP->ldapRoot = 'Root node';
$lang->system->LDAP->filterUser = 'User filtering';
$lang->system->LDAP->email = 'Mail Fields';
$lang->system->LDAP->extraAccount = 'Account Field';
$lang->system->LDAP->ldapAdvance = 'Advanced setting';
$lang->system->LDAP->updateLDAP = 'Update LDAP';
$lang->system->LDAP->updateInstance = 'Update services associated with LDAP';
$lang->system->LDAP->updatingProgress = 'Updating %s services remaining.';
$lang->system->ldapTypeList = array();
$lang->system->ldapTypeList['qucheng'] = 'Built in Qucheng';
$lang->system->ldapTypeList['extra'] = 'External mapping';
/* OSS */
$lang->system->oss = new stdclass;
$lang->system->oss->common = 'Object Storage';
$lang->system->oss->appURL = 'Application address';
$lang->system->oss->user = 'User name';
$lang->system->oss->password = 'Password';
$lang->system->oss->manage = 'Manage';
$lang->system->oss->apiURL = 'API address';
$lang->system->oss->accessKey = 'Access Key';
$lang->system->oss->secretKey = 'Secret Key';
/* SMTP */
$lang->system->SMTP = new stdclass;
$lang->system->SMTP->common = 'Mailbox configuration';
$lang->system->SMTP->enabled = 'Enable SMTP';
$lang->system->SMTP->install = 'Install';
$lang->system->SMTP->update = 'Update';
$lang->system->SMTP->edit = 'Edit';
$lang->system->SMTP->editSMTP = 'Edit SMTP';
$lang->system->SMTP->account = 'Sending email';
$lang->system->SMTP->password = 'Password';
$lang->system->SMTP->host = 'SMTP Server';
$lang->system->SMTP->port = 'SMTP Port';
$lang->system->SMTP->save = 'Save';
/* Domain */
$lang->system->customDomain = 'New domain name';
$lang->system->certPem = 'Public-key certificate';
$lang->system->certKey = 'Private-key';
$lang->system->domain = new stdclass;
$lang->system->domain->common = 'Domain management';
$lang->system->domain->editDomain = 'Modifying Domain name Configuration';
$lang->system->domain->config = 'Configure domain name and certificate';
$lang->system->domain->currentDomain = 'Current domain name';
$lang->system->domain->oldDomain = 'Old domain name';
$lang->system->domain->newDomain = 'New domain name';
$lang->system->domain->expiredDate = 'Certificate expiration time';
$lang->system->domain->uploadCert = 'Upload certificate (only supports pan domain name certificate)';
$lang->system->domain->notReuseOldDomain = 'The default domain name cannot be changed back after using the custom domain name';
$lang->system->domain->setDNS = 'It is recommended to perform DNS resolution before modifying the domain name,';
$lang->system->domain->dnsHelperLink = 'Click to view the help document';
$lang->system->domain->updateInstancesDomain = 'Update the domain name of the installed service';
$lang->system->domain->totalOldDomain = 'A total of %s.';
$lang->system->domain->updatingProgress = 'Updating, %s remaining,';
$lang->system->domain->updating = 'Updating';
$lang->system->SLB = new stdclass;
$lang->system->SLB->common = 'Load Balance';
$lang->system->SLB->config = 'Configure load balancing';
$lang->system->SLB->edit = 'Modify load balancing';
$lang->system->SLB->ipPool = 'IP segment';
$lang->system->SLB->ipPoolExample = 'Example: 192.168.10.0/24 or 192.168.10.0-192.168.10.100';
$lang->system->SLB->installing = 'Configuring load balancing';
$lang->system->SLB->leftSeconds = 'Expected Remaining';
$lang->system->SLB->second = 'Second';
$lang->system->notices = new stdclass;
$lang->system->notices->success = 'Success';
$lang->system->notices->fail = 'Fail';
$lang->system->notices->attention = 'Attention';
$lang->system->notices->noLDAP = 'Unable to find LDAP configuration data';
$lang->system->notices->ldapUsed = '%s services have been associated with LDAP';
$lang->system->notices->ldapInstallSuccess = 'LDAP installation successful';
$lang->system->notices->ldapUpdateSuccess = 'LDAP update successful';
$lang->system->notices->confirmUpdateLDAP = 'After modifying LDAP, it will automatically update and restart the associated services. Are you sure you want to modify it?';
$lang->system->notices->verifyLDAPSuccess = 'Verifying LDAP successfully!';
$lang->system->notices->fillAllRequiredFields = 'Please fill in all required items!';
$lang->system->notices->smtpInstallSuccess = 'LDAP installation successful';
$lang->system->notices->smtpUpdateSuccess = 'LDAP update successful';
$lang->system->notices->smtpWhiteList = "To prevent emails from being blocked, please set the sender's email address as a whitelist in the email server";
$lang->system->notices->smtpAuthCode = 'Some email addresses require separate authorization codes to be filled out. Please refer to the relevant email settings for specific inquiries';
$lang->system->notices->smtpUsed = '%s services are associated with SMTP';
$lang->system->notices->verifySMTPSuccess = 'Verification successful!';
$lang->system->notices->pleaseCheckSMTPInfo = 'Verification failed! Please check if the username and password are correct';
$lang->system->notices->confirmUpdateDomain = 'After modifying the domain name, the domain name of the installed service will be automatically updated. Are you sure you want to modify it?';
$lang->system->notices->updateDomainSuccess = 'The domain name was successfully modified.';
$lang->system->notices->configSLBSuccess = 'Successfully configured load balancing.';
$lang->system->notices->validCert = 'Verification successful';
$lang->system->errors = new stdclass;
$lang->system->errors->notFoundDB = 'The database cannot be found';
$lang->system->errors->notFoundLDAP = 'Unable to find LDAP data';
$lang->system->errors->dbNameIsEmpty = 'Database name is empty';
$lang->system->errors->notSupportedLDAP = 'Currently, this type of LDAP is not supported';
$lang->system->errors->failToInstallLDAP = 'Installation of built-in LDAP failed';
$lang->system->errors->failToInstallExtraLDAP = 'Failed to connect to external LDAP';
$lang->system->errors->failToUpdateExtraLDAP = 'Failed to update external LDAP';
$lang->system->errors->failToUninstallQuChengLDAP = 'Failed to uninstall channel into internal LDAP';
$lang->system->errors->failToUninstallExtraLDAP = 'Uninstalling external LDAP failed';
$lang->system->errors->failToDeleteLDAPSnippet = 'Failed to delete LDAP fragment';
$lang->system->errors->verifyLDAPFailed = 'Verify LDAP failed';
$lang->system->errors->LDAPLinked = 'A service has already been associated with LDAP';
$lang->system->errors->SMTPLinked = 'A service has already been associated with an SMTP service';
$lang->system->errors->failGetOssAccount = 'Failed to obtain the Object storage account';
$lang->system->errors->failToInstallSMTP = 'Failed to install SMTP';
$lang->system->errors->failToUninstallSMTP = 'Uninstalling SMTP failed';
$lang->system->errors->failToUpdateSMTP = 'Failed to update SMTP';
$lang->system->errors->verifySMTPFailed = 'Verify SMTP failed';
$lang->system->errors->notFoundSMTPApp = 'Unable to find SMTP proxy application';
$lang->system->errors->notFoundSMTPService = 'Unable to find SMTP proxy service';
$lang->system->errors->domainIsRequired = 'Domain name must be filled in';
$lang->system->errors->invalidDomain = 'Invalid domain name or formatting error. The domain name only allows Minuscule, numbers, dots (.) and middle horizontal lines (-)';
$lang->system->errors->failToUpdateDomain = 'Failed to update domain name';
$lang->system->errors->forbiddenOriginalDomain = 'Cannot be modified as the platform default domain name';
$lang->system->errors->newDomainIsSameWithOld = 'The new domain name cannot be the same as the original domain name';
$lang->system->errors->failedToConfigSLB = 'Configuration load balancing failed';
$lang->system->errors->wrongIPRange = 'IP segment format error, please refer to the example format' . $lang->system->SLB->ipPoolExample;
$lang->system->errors->ippoolRequired = 'IP segment cannot be empty';
$lang->system->errors->failedToInstallSLBComponent = 'Failed to install load balancing component';
$lang->system->errors->tryReinstallSLB = 'The installation of load balancing components timed out, please try again.';
$lang->system->backup = new stdclass();
$lang->system->backup->common = 'System backup';
$lang->system->backup->shortCommon = 'Backup';
$lang->system->backup->systemInfo = 'System Information';
$lang->system->backup->index = 'Backup homepage';
$lang->system->backup->history = 'Backup records';
$lang->system->backup->delete = 'Delete backup';
$lang->system->backup->backup = 'Backup';
$lang->system->backup->change = 'Retention time';
$lang->system->backup->changeAB = 'modify';
$lang->system->backup->rmPHPHeader = 'Remove security settings';
$lang->system->backup->setting = 'Setting';
$lang->system->backup->backupPerson = 'Backup person';
$lang->system->backup->type = 'Backup type';
$lang->system->backup->settingAction = 'Backup Settings';
$lang->system->backup->name = 'Name';
$lang->system->backup->currentVersion = 'Current version';
$lang->system->backup->latestVersion = 'Latest Version';
$lang->system->backup->files = 'Backup files';
$lang->system->backup->allCount = 'Total number of files';
$lang->system->backup->count = 'Number of backup files';
$lang->system->backup->size = 'size';
$lang->system->backup->status = 'Status';
$lang->system->backup->running = 'Running';
$lang->system->backup->done = 'Done';
$lang->system->backup->backupName = 'Backup name:';
$lang->system->backup->backupSql = 'Backup database:';
$lang->system->backup->backupFile = 'Backup attachment:';
$lang->system->backup->restoreImage = 'Rollback platform image:';
$lang->system->backup->restoreSQL = 'Rollback database:';
$lang->system->backup->restoreFile = 'Rollback attachment:';
$lang->system->backup->checkService = 'Check Service:';
$lang->system->backup->upgrade = 'Upgrade';
$lang->system->backup->rollback = 'Rollback';
$lang->system->backup->restart = 'Restart';
$lang->system->backup->delete = 'Delte';
$lang->system->backup->restoreProgress['doing'] = 'Doing';
$lang->system->backup->restoreProgress['done'] = 'Done';
$lang->system->backup->typeList['manual'] = 'Manual backup';
$lang->system->backup->typeList['upgrade'] = 'Automatic backup before upgrade';
$lang->system->backup->typeList['restore'] = 'Automatic backup before rollback';
$lang->system->backup->waitting = '<span id="backupType"></span>In progress,please wait...';
$lang->system->backup->progressSQL = 'In backup,%s has been backed up';
$lang->system->backup->progressAttach = 'There are a total of %s files in the backup, and %s files have already been backed up';
$lang->system->backup->progressCode = 'There are a total of %s files in the backup, and %s files have already been backed up';
$lang->system->backup->confirmDelete = 'Do you want to delte the backup';
$lang->system->backup->confirmRestore = 'Please confirm whether to roallback?';
$lang->system->backup->holdDays = 'Backup has been retained for the last %s days';
$lang->system->backup->copiedFail = 'Files that failed to copy:';
$lang->system->backup->restoreTip = 'The restore function only restores the database.';
$lang->system->backup->versionInfo = 'Click to view the new version introduction';
$lang->system->backup->confirmUpgrade = 'Please confirm whether to upgrade the channel to a platform?';
$lang->system->backup->upgrading = 'Upgrading';
$lang->system->backup->backupTitle = 'Backing up the channel platform...';
$lang->system->backup->restoreTitle = 'Rolling back the channel platform...';
$lang->system->backup->backingUp = 'In progress';
$lang->system->backup->restoring = 'In progress';
$lang->system->backup->success = new stdclass();
$lang->system->backup->success->upgrade = 'Upgrade successful!';
$lang->system->backup->success->degrade = 'Successfully downgraded!';
$lang->system->backup->error = new stdclass();
$lang->system->backup->error->upgradeFail = "Upgrade failed!";
$lang->system->backup->error->upgradeOvertime = "Upgrade timed out!";
$lang->system->backup->error->degradeFail = "Downgrade failed!";
$lang->system->backup->error->beenLatestVersion = "It is already the latest version, no upgrade required!";
$lang->system->backup->error->requireVersion = "Version number must be uploaded!";
-19
View File
@@ -178,7 +178,6 @@ $lang->system->backup->index = '备份首页';
$lang->system->backup->history = '备份记录';
$lang->system->backup->delete = '删除备份';
$lang->system->backup->backup = '备份';
$lang->system->backup->restore = '回滚';
$lang->system->backup->change = '保留时间';
$lang->system->backup->changeAB = '修改';
$lang->system->backup->rmPHPHeader = '去除安全设置';
@@ -192,7 +191,6 @@ $lang->system->backup->name = '名称';
$lang->system->backup->currentVersion = '当前版本';
$lang->system->backup->latestVersion = '最新版本';
$lang->system->backup->time = '备份时间';
$lang->system->backup->files = '备份文件';
$lang->system->backup->allCount = '总文件数';
$lang->system->backup->count = '备份文件数';
@@ -214,9 +212,6 @@ $lang->system->backup->rollback = '回滚';
$lang->system->backup->restart = '重启';
$lang->system->backup->delete = '删除';
$lang->system->backup->statusList['success'] = '成功';
$lang->system->backup->statusList['fail'] = '失败';
$lang->system->backup->restoreProgress['doing'] = '进行中';
$lang->system->backup->restoreProgress['done'] = '完成';
@@ -224,10 +219,6 @@ $lang->system->backup->typeList['manual'] = '手动备份';
$lang->system->backup->typeList['upgrade'] = '升级前自动备份';
$lang->system->backup->typeList['restore'] = '回滚前自动备份';
$lang->system->backup->settingDir = '备份目录';
$lang->system->backup->settingList['nofile'] = '不备份附件和代码';
$lang->system->backup->settingList['nosafe'] = '不需要防下载PHP文件头';
$lang->system->backup->waitting = '<span id="backupType"></span>正在进行中,请稍候...';
$lang->system->backup->progressSQL = '备份中,已备份%s';
$lang->system->backup->progressAttach = '备份中,共有%s个文件,已经备份%s个';
@@ -246,23 +237,13 @@ $lang->system->backup->backingUp = '进行中';
$lang->system->backup->restoring = '进行中';
$lang->system->backup->success = new stdclass();
$lang->system->backup->success->backup = '备份成功!';
$lang->system->backup->success->restore = '还原成功!';
$lang->system->backup->success->upgrade = '升级成功!';
$lang->system->backup->success->degrade = '降级成功!';
$lang->system->backup->error = new stdclass();
$lang->system->backup->error->noCreateDir = '备份目录不存在,也无法创建该目录';
$lang->system->backup->error->noWritable = "<code>%s</code> 不可写!请检查该目录权限,否则无法备份。";
$lang->system->backup->error->noDelete = "文件 %s 无法删除,修改权限或手工删除。";
$lang->system->backup->error->restoreSQL = "数据库还原失败,错误:%s";
$lang->system->backup->error->restoreFile = "附件还原失败,错误:%s";
$lang->system->backup->error->backupFile = "附件备份失败,错误:%s";
$lang->system->backup->error->backupCode = "代码备份失败,错误:%s";
$lang->system->backup->error->upgradeFail = "升级失败!";
$lang->system->backup->error->upgradeOvertime = "升级超时!";
$lang->system->backup->error->degradeFail = "降级失败!";
$lang->system->backup->error->beenLatestVersion = "已经是最新版,无需升级!";
$lang->system->backup->error->requireVersion = "必须上传版本号!";
+1 -1
View File
@@ -19,8 +19,8 @@ formPanel
formGroup
(
set::label($lang->system->domain->oldDomain),
set::name(''),
set::control('static'),
set::name(''),
set::value($this->loadModel('cne')->sysDomain()),
h::span
(