en.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * Bakup Tool English language file.
  4. *
  5. */
  6. return array(
  7. 'admin:backups' => 'Backups',
  8. 'admin:backups:list' => 'Latest backups',
  9. 'admin:backups:schedule' => 'Schedule a backup',
  10. 'backup-tool:create' => 'Create a new backup',
  11. 'backup-tool:settings:backup_dir' => 'The full path to the backup directory. For ex. "/var/backups/elgg/".',
  12. 'backup-tool:bad_backup_dir' => '!!! Backup directory is not specified or not exists. Please fill a correct path into <a href="' . elgg_get_site_url() . 'admin/plugin_settings/backup-tool"><u>plugin settings</u></a>',
  13. 'backup-tool:create:success' => '%s was created successfully',
  14. 'backup-tool:create:fail' => 'File was not created because of some errors. Please check path and permissions to the backups directory',
  15. 'backup-tool:message:removed' => '%s file(s) was removed',
  16. 'backup-tool:message:notexists' => 'File %s not exists',
  17. 'backup-tool:message:nofiles' => 'Nothing was selected',
  18. 'backup-tool:schedule:enable' => 'Enable backup scheduling',
  19. 'backup-tool:schedule:period' => 'How often should the backup be created?',
  20. 'backup-tool:schedule:hourly' => 'Once a hour',
  21. 'backup-tool:schedule:daily' => 'Once a day',
  22. 'backup-tool:schedule:weekly' => 'Once a week',
  23. 'backup-tool:schedule:monthly' => 'Once a month',
  24. 'backup-tool:schedule:yearly' => 'Once a year',
  25. 'backup-tool:schedule:delete' => 'Delete backups older than a',
  26. 'backup-tool:schedule:week' => 'week',
  27. 'backup-tool:schedule:month' => 'month',
  28. 'backup-tool:schedule:year' => 'year',
  29. 'backup-tool:schedule:never' => 'never',
  30. 'backup-tool:settings:success' => 'Settings of schedule was saved',
  31. 'backup-tool:settings:success:enable' => 'Backup scheduling was enabled',
  32. 'backup-tool:settings:success:disable' => 'Backup scheduling was disabled',
  33. 'backuptool:schedule:button:enable' => 'Turn On scheduling',
  34. 'backuptool:schedule:button:disable' => 'Turn Off scheduling',
  35. 'backup-tool:schedule:settings' => 'Schedule settings',
  36. 'backup-tool:schedule:backup-options' => 'Backup options',
  37. 'admin:backups:settings' => 'Plugin settings',
  38. 'backuptool:schedule:button:apply'=>'Apply changes',
  39. 'backup-tool:schedule:ftp-settings' => 'FTP settings',
  40. 'backup-tool:schedule:ftp-settings:text' => 'Upload copy of a backup to remote FTP-folder',
  41. 'backup-tool:schedule:ftp-host'=> 'FTP host',
  42. 'backup-tool:schedule:ftp-user'=> 'FTP user',
  43. 'backup-tool:schedule:ftp-password'=> 'FTP password',
  44. 'backup-tool:schedule:ftp-dir'=> 'Remote directory',
  45. 'backuptool:schedule:ftp:testbutton' => 'Test connection',
  46. 'backup-tool:schedule:ftp:enable' => 'Enable FTP uploading',
  47. 'backup-tool:ftp:established' => 'Connection established',
  48. 'backup-tool:ftp:notestablished' => 'Connection not established',
  49. 'backup-tool:ftp:failchdir' => ' but remote directory is wrong',
  50. 'backup-tool:settings:error:backup_options' => 'At least one backup option should be choosen',
  51. 'backup-tool:create:inprogress' => 'Creating backup...</br>Please be patient it could take a few minutes',
  52. 'backup-tool:create:text' => 'Please specify which data should be included in backup file',
  53. 'backup-tool:options:site' => 'site folder (%s)',
  54. 'backup-tool:options:data' => 'data folder (%s)',
  55. 'backup-tool:options:db' => 'database dump',
  56. 'backup-tool:settings:backup_name' => 'Name of the backup file',
  57. 'backup-tool:restore:success' => 'Backup was restored successfully',
  58. 'backup-tool:restore' => 'Restore',
  59. );