litefm.php 4.3 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', "El directorio '%s' no se encontro en el servidor.");
  25. define('OGP_LANG_filename', "Nombre");
  26. define('OGP_LANG_filesize', "Peso");
  27. define('OGP_LANG_bytes', "Bytes");
  28. define('OGP_LANG_owner', "Usuario");
  29. define('OGP_LANG_group', "Grupo");
  30. define('OGP_LANG_empty_directory', "Directorio vacio.");
  31. define('OGP_LANG_currently_viewing', "Mostrando el directorio '%s'");
  32. define('OGP_LANG_wrote_changes', "Cambios guardados");
  33. define('OGP_LANG_failed_write', "Imposible guardar.");
  34. define('OGP_LANG_failed_read', "Imposible leer.");
  35. define('OGP_LANG_failed_list', "Imposible listar directorio.");
  36. define('OGP_LANG_level_up', "Subir un nivel");
  37. define('OGP_LANG_unallowed_char', "Caracter no permitido.");
  38. define('OGP_LANG_button_edit', "[ Editar ] ");
  39. define('OGP_LANG_save', "Guardar");
  40. define('OGP_LANG_home_id_missing', "Home ID no encontrada.");
  41. define('OGP_LANG_upload', "Subir");
  42. define('OGP_LANG_upload_failed', "Falló la subida, el error fue: %s.");
  43. define('OGP_LANG_can_not_create_upload_folder_path', "No se pudo crear la ruta a la carpeta de subidas %s.");
  44. define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s no es accesible desde el agente");
  45. define('OGP_LANG_upload_file', "Subir archivos");
  46. define('OGP_LANG_uncompress', "Descomprimir");
  47. define('OGP_LANG_create_folder', "Crear carpeta");
  48. define('OGP_LANG_create', "Crear");
  49. define('OGP_LANG_delete_item', "Borrar %s?");
  50. define('OGP_LANG_upload_in_progress', "Subida en progreso...");
  51. define('OGP_LANG_upload_complete', "Archivo subido correctamente.");
  52. define('OGP_LANG_chattr_yes', "Bloquear Archivo");
  53. define('OGP_LANG_chattr_no', "Desbloquear Archivo");
  54. define('OGP_LANG_secure_item', "Bloquear/Desbloquear %s?");
  55. define('OGP_LANG_filesecure', "Seguridad del archivo");
  56. define('OGP_LANG_chattr_locked', "Archivo Bloqueado");
  57. define('OGP_LANG_chattr_unlocked', "Archivo Desbloqueado");
  58. define('OGP_LANG_rename', "Renombrar");
  59. define('OGP_LANG_move', "Mover");
  60. define('OGP_LANG_copy', "Copiar");
  61. define('OGP_LANG_compress', "Comprimir");
  62. define('OGP_LANG_create_file', "Crear Archivo");
  63. define('OGP_LANG_select_at_least_one_item', "Selecciona al menos un elemento");
  64. define('OGP_LANG_rename_item', "Renombrar elemento(s)");
  65. define('OGP_LANG_move_item', "Mover elemento(s)");
  66. define('OGP_LANG_copy_item', "Copiar elemento(s)");
  67. define('OGP_LANG_compress_item', "Comprimir elemento(s)");
  68. define('OGP_LANG_uncompress_item', "Descomprimir elemento(s)");
  69. define('OGP_LANG_archive_name', "Nombre del archivo");
  70. define('OGP_LANG_archive_type', "Tipo de archivo");
  71. define('OGP_LANG_file_name', "Nombre del archivo");
  72. define('OGP_LANG_folder_name', "Nombre de la carpeta");
  73. define('OGP_LANG_compresses_files_separately', "Comprime archivos por separado");
  74. define('OGP_LANG_to', "a");
  75. define('OGP_LANG_upload_to_web', "Subida a la web");
  76. define('OGP_LANG_transfer_to_server', "Transferencia al servidor");
  77. define('OGP_LANG_mail_sent_successfully', "Email enviado correctamente");
  78. define('OGP_LANG_send_item_by_email', "Enviar elemento(s) por email");
  79. define('OGP_LANG_subject', "Asunto");
  80. define('OGP_LANG_message', "Mensaje");
  81. define('OGP_LANG_dest_email', "Email de destino");
  82. define('OGP_LANG_remove', "Borrar");
  83. define('OGP_LANG_send_by_email', "Enviar por email");
  84. define('OGP_LANG_send_by_email_info', "Para poder enviar archivos por correo electrónico el paquete 'mutt' debe estar instalado en el sistema operativo de todos los agentes disponibles.");
  85. define('OGP_LANG_settings_updated', "Configuración actualizada.");
  86. define('OGP_LANG_update_settings', "Actualizar configuración");
  87. ?>