litefm.php 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 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('OGP_LANG_dir_not_found', "Directory '%s' not found from the server.");
  25. define('OGP_LANG_filename', "Dosya Adı");
  26. define('OGP_LANG_filesize', "Dosya boyutu");
  27. define('OGP_LANG_bytes', "Bayt");
  28. define('OGP_LANG_owner', "Sahip");
  29. define('OGP_LANG_group', "Group");
  30. define('OGP_LANG_empty_directory', "Dizin yolu boş");
  31. define('OGP_LANG_currently_viewing', "Currently viewing directory '%s'");
  32. define('OGP_LANG_wrote_changes', "Changes saved successfully.");
  33. define('OGP_LANG_failed_write', "Failed to write file to remote server.");
  34. define('OGP_LANG_failed_read', "Failed to read file from the remote server.");
  35. define('OGP_LANG_failed_list', "Failed to retrieve directory list.");
  36. define('OGP_LANG_level_up', "^Up one Level^");
  37. define('OGP_LANG_unallowed_char', "Unallowed characters found from the path.");
  38. define('OGP_LANG_button_edit', "[Edit]");
  39. define('OGP_LANG_save', "Save");
  40. define('OGP_LANG_home_id_missing', "Home ID is missing.");
  41. define('OGP_LANG_upload', "Upload");
  42. define('OGP_LANG_upload_failed', "Upload failed, the error was: %s.");
  43. define('OGP_LANG_can_not_create_upload_folder_path', "Can not create upload folder path %s");
  44. define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s is not accessible from the Agent");
  45. define('OGP_LANG_upload_file', "Upload file");
  46. define('OGP_LANG_uncompress', "Uncompress");
  47. define('OGP_LANG_create_folder', "Create folder");
  48. define('OGP_LANG_create', "Create");
  49. define('OGP_LANG_delete_item', "Delete %s?");
  50. define('OGP_LANG_upload_in_progress', "Upload in progress...");
  51. define('OGP_LANG_upload_complete', "Upload complete.");
  52. define('OGP_LANG_chattr_yes', "Lock File");
  53. define('OGP_LANG_chattr_no', "Unlock File");
  54. define('OGP_LANG_secure_item', "Secure/Unsecure %s?");
  55. define('OGP_LANG_filesecure', "File Security");
  56. define('OGP_LANG_chattr_locked', "File Locked");
  57. define('OGP_LANG_chattr_unlocked', "File Unlocked");
  58. define('OGP_LANG_rename', "Rename");
  59. define('OGP_LANG_move', "Move");
  60. define('OGP_LANG_copy', "Copy");
  61. define('OGP_LANG_compress', "Compress");
  62. define('OGP_LANG_create_file', "Create File");
  63. define('OGP_LANG_select_at_least_one_item', "Select at least one item");
  64. define('OGP_LANG_rename_item', "Rename item(s)");
  65. define('OGP_LANG_move_item', "Move item(s)");
  66. define('OGP_LANG_copy_item', "Copy item(s)");
  67. define('OGP_LANG_compress_item', "Compress item(s)");
  68. define('OGP_LANG_uncompress_item', "Uncompress item(s)");
  69. define('OGP_LANG_archive_name', "Archive name");
  70. define('OGP_LANG_archive_type', "Archive type");
  71. define('OGP_LANG_file_name', "File name");
  72. define('OGP_LANG_folder_name', "folder name");
  73. define('OGP_LANG_compresses_files_separately', "compresses files separately");
  74. define('OGP_LANG_to', "to");
  75. define('OGP_LANG_upload_to_web', "Upload to web");
  76. define('OGP_LANG_transfer_to_server', "Transfer to server");
  77. define('OGP_LANG_mail_sent_successfully', "Email sent successfully");
  78. define('OGP_LANG_send_item_by_email', "Send item(s) by email");
  79. define('OGP_LANG_subject', "Subject");
  80. define('OGP_LANG_message', "Message");
  81. define('OGP_LANG_dest_email', "Destination email");
  82. define('OGP_LANG_remove', "Remove");
  83. define('OGP_LANG_send_by_email', "Send by email");
  84. define('OGP_LANG_send_by_email_info', "For sending files the 'mutt' package must be installed on all available Agents.");
  85. define('OGP_LANG_settings_updated', "Settings updated");
  86. define('OGP_LANG_update_settings', "Update settings");
  87. ?>