litefm.php 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2017 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('dir_not_found', "Directory '%s' not found from the server.");
  25. define('filename', "Filename");
  26. define('filesize', "Filesize");
  27. define('bytes', "Bytes");
  28. define('owner', "Owner");
  29. define('group', "Group");
  30. define('empty_directory', "Directory is empty.");
  31. define('currently_viewing', "Currently viewing directory '%s'");
  32. define('wrote_changes', "Changes saved successfully.");
  33. define('failed_write', "Failed to write file to remote server.");
  34. define('failed_read', "Failed to read file from the remote server.");
  35. define('failed_list', "Failed to retrieve directory list.");
  36. define('level_up', "^Up one Level^");
  37. define('unallowed_char', "Unallowed characters found from the path.");
  38. define('button_edit', "[Edit]");
  39. define('save', "Save");
  40. define('home_id_missing', "Home ID is missing.");
  41. define('upload', "Upload");
  42. define('upload_failed', "Upload failed, the error was: %s.");
  43. define('can_not_create_upload_folder_path', "Can not create upload folder path %s");
  44. define('url_is_not_accesible_from_agent', "URL %s is not accessible from the Agent");
  45. define('upload_file', "Upload file");
  46. define('uncompress', "Uncompress");
  47. define('create_folder', "Create folder");
  48. define('create', "Create");
  49. define('delete_item', "Delete %s?");
  50. define('upload_in_progress', "Upload in progress...");
  51. define('upload_complete', "Upload complete.");
  52. define('chattr_yes', "Lock File");
  53. define('chattr_no', "Unlock File");
  54. define('secure_item', "Secure/Unsecure %s?");
  55. define('filesecure', "File Security");
  56. define('chattr_locked', "File Locked");
  57. define('chattr_unlocked', "File Unlocked");
  58. define('rename', "Rename");
  59. define('move', "Move");
  60. define('copy', "Copy");
  61. define('compress', "Compress");
  62. define('create_file', "Create File");
  63. define('select_at_least_one_item', "Select at least one item");
  64. define('rename_item', "Rename item(s)");
  65. define('move_item', "Move item(s)");
  66. define('copy_item', "Copy item(s)");
  67. define('compress_item', "Compress item(s)");
  68. define('uncompress_item', "Uncompress item(s)");
  69. define('archive_name', "Archive name");
  70. define('archive_type', "Archive type");
  71. define('file_name', "File name");
  72. define('folder_name', "folder name");
  73. define('compresses_files_separately', "compresses files separately");
  74. define('to', "to");
  75. define('upload_to_web', "Upload to web");
  76. define('transfer_to_server', "Transfer to server");
  77. define('mail_sent_successfully', "Email sent successfully");
  78. define('send_item_by_email', "Send item(s) by email");
  79. define('subject', "Subject");
  80. define('message', "Message");
  81. define('dest_email', "Destination email");
  82. define('remove', "Remove");
  83. define('send_by_email', "Send by email");
  84. define('send_by_email_info', "For mailing files the packet 'mutt' must be installed in the agent side.");
  85. define('settings_updated', "Settings updated");
  86. define('update_settings', "Update settings");
  87. ?>