| 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('login_name', "Nombre de usuario");
- define('users_fname', "Nombre");
- define('users_lname', "Apellidos");
- define('users_passwd', "Contraseña");
- define('users_cpasswd', "Verificar contraseña");
- define('passwd_len', "Password must be longer than 6 characters");
- define('err_password', "Password cannot be empty");
- define('err_confirm_password', "Verify password field cannot be empty");
- define('err_password_mismatch', "Passwords do not match");
- define('phone_number', "Telefono");
- define('users_email', "Email");
- define('register_a_new_user', "Registrar a un nuevo usuario");
- define('password_mismatch', "Los passwords no coinciden.");
- define('confirm_password', "Confirmar password");
- define('successfull', "Registro completado");
- define('click_here', "Click Aquí");
- define('to_login', "para entrar");
- define('registered_on', "Registrado el :: %s");
- define('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('err_captcha', "Captcha no coincide.");
- define('err_login_name', "Nombre de usuario vacio o en uso.");
- define('err_first_name', "Introduzca su nombre.");
- define('err_last_name', "No ha introducido apellidos.");
- define('err_phone_number', "Número de teléfono vacio.");
- define('err_email_address', "La dirección de email esta vacia o es incorrecta.");
- define('err_email_address_already_in_use_by', "La dirección de email esta en uso por <b>%s</b>.");
- define('user_registration', "Registro de Usuario");
- define('your_account_details_has_been_sent_by_email_to', "Los detalles de su cuenta han sido enviados a <b>%s</b>.");
- define('account_created', "Your account has been created.");
- define('subject', "Asunto");
- ?>
|