en.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. $lang->backup->common = 'Backup';
  3. $lang->backup->name = 'Backup Name';
  4. $lang->backup->index = 'Backup List';
  5. $lang->backup->history = 'History';
  6. $lang->backup->delete = 'Delete Backup';
  7. $lang->backup->backup = 'Start Backup';
  8. $lang->backup->restore = 'Restore';
  9. $lang->backup->change = 'Retention days';
  10. $lang->backup->changeAB = 'Edit';
  11. $lang->backup->rmPHPHeader = 'Remove Security Settings';
  12. $lang->backup->setting = 'Settings';
  13. $lang->backup->restoreAction = 'Restore Backup';
  14. $lang->backup->settingAction = 'Backup Settings';
  15. $lang->backup->time = 'Backup Time';
  16. $lang->backup->files = 'Backup Files';
  17. $lang->backup->allCount = 'Total Files';
  18. $lang->backup->count = 'Backup Files';
  19. $lang->backup->size = 'Size';
  20. $lang->backup->status = 'Status';
  21. $lang->backup->statusList['success'] = 'Success';
  22. $lang->backup->statusList['fail'] = 'Failed';
  23. $lang->backup->settingDir = 'Backup Directory';
  24. $lang->backup->settingList['nofile'] = 'Do not back up files or codes.';
  25. $lang->backup->settingList['nosafe'] = 'Do not prevent downloading PHP file header.';
  26. global $config;
  27. if($config->inContainer) $lang->backup->settingList['nofile'] = 'Do not back up files.';
  28. $lang->backup->waiting = '<span id="backupType"></span>in progress. Please wait...';
  29. $lang->backup->progressSQL = '<p>SQL backup in progress — %s completed.</p>';
  30. $lang->backup->progressAttach = '<p>SQL backup completed.</p><p>Backing up attachments — total: %s files, backed up: %s files.</p>';
  31. $lang->backup->progressCode = '<p>SQL backup completed.</p><p>Attachment backup completed.</p><p>Backing up source code — total: %s files, backed up: %s files.';
  32. $lang->backup->confirmDelete = 'Are you sure you want to delete the backup?';
  33. $lang->backup->confirmRestore = 'Are you sure you want to restore the backup?';
  34. $lang->backup->holdDays = 'Keep backups for the last %s days.';
  35. $lang->backup->copiedFail = 'Files failed to copy:';
  36. $lang->backup->restoreTip = 'The restore process only restores attachments and the database. To restore source code, please do so manually.';
  37. $lang->backup->insufficientDisk = 'Available disk space is less than NEED_SPACEG. This may cause insufficient space for the backup or affect system performance. Please resolve the issue and try again.';
  38. $lang->backup->ongoBackup = 'Continue Backup';
  39. $lang->backup->cancelBackup = 'cancel backup';
  40. $lang->backup->getSpaceLoading = 'Calculating required backup space...';
  41. $lang->backup->success = new stdclass();
  42. $lang->backup->success->backup = 'Backup completed successfully!';
  43. $lang->backup->success->restore = 'Restore completed successfully!';
  44. $lang->backup->error = new stdclass();
  45. $lang->backup->error->noCreateDir = 'The backup directory does not exist and could not be created.';
  46. $lang->backup->error->noWritable = "<code>%s</code> is not writable! Please check directory permissions, or the backup cannot proceed.";
  47. $lang->backup->error->plainNoWritable = "%s is not writable! Please check directory permissions, or the backup cannot proceed.";
  48. $lang->backup->error->noDelete = "File %s cannot be deleted. Please adjust file permissions or delete it manually.";
  49. $lang->backup->error->restoreSQL = "Database restore failed — error: %s";
  50. $lang->backup->error->restoreFile = "Attachment restore failed — error: %s";
  51. $lang->backup->error->backupFile = "Attachment backup failed — error: %s";
  52. $lang->backup->error->backupCode = "Source code backup failed — error: %s";
  53. $lang->backup->error->timeout = "Backup timed out.";
  54. $lang->backup->error->int = '『%s』should be a positive integer.';
  55. $lang->backup->notice = new stdclass();
  56. $lang->backup->notice->higherVersion = 'The backup version is higher than the current running version. Please update your system image to version %s before restoring.';
  57. $lang->backup->notice->lowerVersion = 'The backup version is lower than the current running version. The system will perform an upgrade after restoration.';
  58. $lang->backup->notice->unknownVersion = 'Version information could not be detected from the selected backup. Do you still want to proceed with restoration?';
  59. $lang->backup->notice->settingsInQuickon = 'You are currently using the ZenTao DevOps Platform Edition — no additional configuration is required.';
  60. $lang->backup->notice->gotoUpgrade = 'Restore completed successfully. Redirecting to the upgrade page — if the page does not refresh automatically, please reload manually.';