| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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_login_name', "Nombre de usuario");
- define('OGP_LANG_first_name', "Nombre");
- define('OGP_LANG_last_name', "Apellidos");
- define('OGP_LANG_phone_number', "Telefono");
- define('OGP_LANG_email_address', "Dirección de correo electronico");
- define('OGP_LANG_register_a_new_user', "Registrar a un nuevo usuario");
- define('OGP_LANG_password_mismatch', "Las contraseñas no coinciden.");
- define('OGP_LANG_confirm_password', "Confirmar contraseña");
- define('OGP_LANG_subuser_password', "Contraseña del Subusuario");
- define('OGP_LANG_subuser_man', "Subusuarios");
- define('OGP_LANG_successfull', "Registro completado");
- define('OGP_LANG_click_here', "Click Aquí");
- define('OGP_LANG_to_login', "para entrar");
- define('OGP_LANG_registered_on', "Registrado el :: %s");
- define('OGP_LANG_register_message', "Hola,<br>Tu cuenta a sido creada.<br><br>Usuario: %s<br>Contraseña: %s<br>Puedes cambiar la contraseña desde tu cuenta.<br>Gracias!<br>El administrador.<br>Esto es un mensaje automatico, por favor no respondas!");
- define('OGP_LANG_err_password', "El campo de contraseña no puede permanecer vacío.");
- define('OGP_LANG_err_confirm_password', "Comprueba el campo de contraseña, no puede estar vacío.");
- define('OGP_LANG_err_password_mismatch', "Las contraseñas no coinciden.");
- define('OGP_LANG_err_captcha', "Captcha no coincide.");
- define('OGP_LANG_err_login_name', "Nombre de usuario vacio o en uso.");
- define('OGP_LANG_err_first_name', "Introduzca su nombre.");
- define('OGP_LANG_err_last_name', "No ha introducido apellidos.");
- define('OGP_LANG_err_phone_number', "Número de teléfono vacio.");
- define('OGP_LANG_err_email_address', "La dirección de email esta vacia o es incorrecta.");
- define('OGP_LANG_err_users_parent', "Las cuentas de subusuario no pueden crear otros usuarios.");
- define('OGP_LANG_err_parent_user', "La ID del usuario padre debe referenciar a un usuario pre-existente valido.");
- define('OGP_LANG_err_email_address_already_in_use_by', "La dirección de email esta en uso por <b>%s</b>.");
- define('OGP_LANG_user_registration', "Registro de Usuario");
- define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Los detalles de su cuenta han sido enviados a <b>%s</b>.");
- define('OGP_LANG_subject', "Hola %s, bienvenido a %s!");
- define('OGP_LANG_sub_user', "Subusuarios");
- define('OGP_LANG_create_sub_user', "Añadir subusuario");
- define('OGP_LANG_listdel_sub_user', "Lista, modifica o elimina información de las cuentas de subusuario.");
- define('OGP_LANG_delete_sub_user', "Eliminar Subusuario");
- define('OGP_LANG_del_subuser_conf', "Seguro que quieres eliminar esta cuenta?:");
- define('OGP_LANG_no_subusers', "No hay subusuarios disponibles para ser asignados a este grupo, crea alguna cuenta de usuario primero.");
- define('OGP_LANG_subuser_deleted', "El subusuario %s se eliminó de la base de datos correctamente!");
- define('OGP_LANG_subuser_added', "El subusuario %s se añadió a la base de datos correctamente!");
- define('OGP_LANG_your_subusers', "Cuentas de subusuario de su propiedad");
- ?>
|