| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2016 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('module_id', "ID");
- define('module_name', "Nombre");
- define('module_folder', "Carpeta");
- define('module_version', "Versión");
- define('db_version', "Versión BD");
- define('modules_available_for_install', "Los siguientes módulos estan disponibles para su instalacion");
- define('install', "Instalar");
- define('uninstall', "Uninstall");
- define('modules', "Módulos");
- define('update_modules', "Actualizar Modulos");
- define('no_installed_modules', "No se han encontrado módulos instalados.");
- define('not_complete', "Peligro, manejar con cuidado, eliminar un módulo <br>puede suponer la pérdida de todos los datos relacionados con el.");
- define('core_mods_installed', "Installed Core Modules:");
- define('custom_mods_installed', "Installed Custom Modules:");
- define('installing_module', "Instalando módulo '%s'");
- define('successfully_installed_module', "Módulo %s instalado correctamente");
- define('failed_to_install_module', "Fallo al instalar el módulo %s.");
- define('adding_module', "Instalando el módulo '%s'.");
- define('module_already_installed', "El módulo '%s' ya se ha instalado.");
- define('uninstalling_module', "Desinstalando el módulo '%s'");
- define('successfully_uninstalled_module', "Se ha desinstalado el módulo %s correctamente.");
- define('failed_to_uninstall_module', "Fallo la desinstalacion del módulo %s.");
- define('module_file_missing', "El archivo del modulo no existe.");
- define('module_file_missing_info', "La informacion sobre el modulo esta incompleta.");
- define('query_failed', "No se pudo procesar la peticion con la base de datos.");
- define('query_failed_2', "to database.");
- define('failed_del_db', "Error al eliminar datos de la BD.");
- define('updated_module', "Modulo %s actualizado.");
- define('updating_modules', "Actualizando Modulos");
- define('updating_finished', "Actualización Completa");
- ?>
|