en.dict.itop-backup.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * Localized data
  4. *
  5. * @copyright Copyright (C) 2013 Combodo
  6. * @license http://opensource.org/licenses/AGPL-3.0
  7. */
  8. Dict::Add('EN US', 'English', 'English', array(
  9. 'bkp-backup-running' => 'A backup is running. Please wait...',
  10. 'bkp-restore-running' => 'A restore is running. Please wait...',
  11. 'Menu:BackupStatus' => 'Scheduled Backups',
  12. 'bkp-status-title' => 'Scheduled Backups',
  13. 'bkp-status-checks' => 'Settings and checks',
  14. 'bkp-mysqldump-ok' => 'mysqldump is present: %1$s',
  15. 'bkp-mysqldump-notfound' => 'mysqldump could not be found: %1$s - Please make sure it is installed and in the path, or edit the configuration file to tune mysql_bindir.',
  16. 'bkp-mysqldump-issue' => 'mysqldump could not be executed (retcode=%1$d): Please make sure it is installed and in the path, or edit the configuration file to tune mysql_bindir',
  17. 'bkp-missing-dir' => 'The target directory %1$s count not be found',
  18. 'bkp-free-disk-space' => '<b>%1$s free</b> in %2$s',
  19. 'bkp-dir-not-writeable' => '%1$s is not writeable',
  20. 'bkp-wrong-format-spec' => 'The current specification to format the file names is wrong (%1$s). A default specification will apply: %2$s',
  21. 'bkp-name-sample' => 'Backup files are named depending on DB identifiers, date and time. Example: %1$s',
  22. 'bkp-week-days' => 'Backups will occur <b>every %1$s at %2$s</b>',
  23. 'bkp-retention' => 'At most <b>%1$d backup files will be kept</b> in the target directory.',
  24. 'bkp-next-to-delete' => 'Will be deleted when the next backup occurs (see the setting "retention_count")',
  25. 'bkp-table-file' => 'File',
  26. 'bkp-table-file+' => 'Only files having the extension .zip are considered as being backup files',
  27. 'bkp-table-size' => 'Size',
  28. 'bkp-table-size+' => '',
  29. 'bkp-table-actions' => 'Actions',
  30. 'bkp-table-actions+' => '',
  31. 'bkp-status-backups-auto' => 'Scheduled backups',
  32. 'bkp-status-backups-manual' => 'Manual backups',
  33. 'bkp-status-backups-none' => 'No backup yet',
  34. 'bkp-next-backup' => 'The next backup will occur on <b>%1$s</b> (%2$s) at %3$s',
  35. 'bkp-button-backup-now' => 'Backup now!',
  36. 'bkp-button-restore-now' => 'Restore!',
  37. 'bkp-confirm-backup' => 'Please confirm that you do request the backup to occur right now.',
  38. 'bkp-confirm-restore' => 'Please confirm that you do want to restore the backup %1$s.',
  39. 'bkp-wait-backup' => 'Please wait for the backup to complete...',
  40. 'bkp-wait-restore' => 'Please wait for the restore to complete...',
  41. 'bkp-success-restore' => 'Restore successfully completed.',
  42. ));
  43. ?>