| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2018 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('OGP_LANG_dir_not_found', "El directorio '%s' no se encontro en el servidor.");
- define('OGP_LANG_filename', "Nombre");
- define('OGP_LANG_filesize', "Peso");
- define('OGP_LANG_bytes', "Bytes");
- define('OGP_LANG_owner', "Usuario");
- define('OGP_LANG_group', "Grupo");
- define('OGP_LANG_empty_directory', "Directorio vacio.");
- define('OGP_LANG_currently_viewing', "Mostrando el directorio '%s'");
- define('OGP_LANG_wrote_changes', "Cambios guardados");
- define('OGP_LANG_failed_write', "Imposible guardar.");
- define('OGP_LANG_failed_read', "Imposible leer.");
- define('OGP_LANG_failed_list', "Imposible listar directorio.");
- define('OGP_LANG_level_up', "Subir un nivel");
- define('OGP_LANG_unallowed_char', "Caracter no permitido.");
- define('OGP_LANG_button_edit', "[ Editar ] ");
- define('OGP_LANG_save', "Guardar");
- define('OGP_LANG_home_id_missing', "Home ID no encontrada.");
- define('OGP_LANG_upload', "Subir");
- define('OGP_LANG_upload_failed', "Falló la subida, el error fue: %s.");
- define('OGP_LANG_can_not_create_upload_folder_path', "No se pudo crear la ruta a la carpeta de subidas %s.");
- define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s no es accesible desde el agente");
- define('OGP_LANG_upload_file', "Subir archivos");
- define('OGP_LANG_uncompress', "Descomprimir");
- define('OGP_LANG_create_folder', "Crear carpeta");
- define('OGP_LANG_create', "Crear");
- define('OGP_LANG_delete_item', "Borrar %s?");
- define('OGP_LANG_upload_in_progress', "Subida en progreso...");
- define('OGP_LANG_upload_complete', "Archivo subido correctamente.");
- define('OGP_LANG_chattr_yes', "Bloquear Archivo");
- define('OGP_LANG_chattr_no', "Desbloquear Archivo");
- define('OGP_LANG_secure_item', "Bloquear/Desbloquear %s?");
- define('OGP_LANG_filesecure', "Seguridad del archivo");
- define('OGP_LANG_chattr_locked', "Archivo Bloqueado");
- define('OGP_LANG_chattr_unlocked', "Archivo Desbloqueado");
- define('OGP_LANG_rename', "Renombrar");
- define('OGP_LANG_move', "Mover");
- define('OGP_LANG_copy', "Copiar");
- define('OGP_LANG_compress', "Comprimir");
- define('OGP_LANG_create_file', "Crear Archivo");
- define('OGP_LANG_select_at_least_one_item', "Selecciona al menos un elemento");
- define('OGP_LANG_rename_item', "Renombrar elemento(s)");
- define('OGP_LANG_move_item', "Mover elemento(s)");
- define('OGP_LANG_copy_item', "Copiar elemento(s)");
- define('OGP_LANG_compress_item', "Comprimir elemento(s)");
- define('OGP_LANG_uncompress_item', "Descomprimir elemento(s)");
- define('OGP_LANG_archive_name', "Nombre del archivo");
- define('OGP_LANG_archive_type', "Tipo de archivo");
- define('OGP_LANG_file_name', "Nombre del archivo");
- define('OGP_LANG_folder_name', "Nombre de la carpeta");
- define('OGP_LANG_compresses_files_separately', "Comprime archivos por separado");
- define('OGP_LANG_to', "a");
- define('OGP_LANG_upload_to_web', "Subida a la web");
- define('OGP_LANG_transfer_to_server', "Transferencia al servidor");
- define('OGP_LANG_mail_sent_successfully', "Email enviado correctamente");
- define('OGP_LANG_send_item_by_email', "Enviar elemento(s) por email");
- define('OGP_LANG_subject', "Asunto");
- define('OGP_LANG_message', "Mensaje");
- define('OGP_LANG_dest_email', "Email de destino");
- define('OGP_LANG_remove', "Borrar");
- define('OGP_LANG_send_by_email', "Enviar por email");
- define('OGP_LANG_send_by_email_info', "Para enviar archivos el paquete 'mutt' debe estar instalado en todos los agentes disponibles.");
- define('OGP_LANG_settings_updated', "Configuración actualizada.");
- define('OGP_LANG_update_settings', "Actualizar configuración");
- ?>
|