55 lines
3 KiB
PHP
Executable file
55 lines
3 KiB
PHP
Executable file
<?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_users_fname', "Nombre");
|
|
define('OGP_LANG_users_lname', "Apellido");
|
|
define('OGP_LANG_users_passwd', "Contraseña");
|
|
define('OGP_LANG_users_cpasswd', "Verificar contraseña");
|
|
define('OGP_LANG_passwd_len', "La contraseña debe tener más de 6 caracteres");
|
|
define('OGP_LANG_err_password', "La contraseña no puede estar en blanco");
|
|
define('OGP_LANG_err_confirm_password', "El campo Verificar contraseña no puede estar en blanco");
|
|
define('OGP_LANG_err_password_mismatch', "Las contraseñas no coinciden");
|
|
define('OGP_LANG_phone_number', "Teléfono");
|
|
define('OGP_LANG_users_email', "Email");
|
|
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_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', "Hello,<br><br>Your Open Game Panel account has been created and you may <a href='%s' target='_blank'>login now</a>.<br><br>Username: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
|
define('OGP_LANG_err_captcha', "Captcha no coincide.");
|
|
define('OGP_LANG_err_login_name', "Nombre de usuario vacío o en uso.");
|
|
define('OGP_LANG_err_first_name', "Introduzca su nombre.");
|
|
define('OGP_LANG_err_last_name', "Introduzca su apellido");
|
|
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_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_account_created', "Tu cuenta ha sido creada.");
|
|
define('OGP_LANG_subject', "Asunto");
|
|
?>
|