register.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_login_name', "Nombre de usuario");
  25. define('OGP_LANG_users_fname', "Nombre");
  26. define('OGP_LANG_users_lname', "Apellido");
  27. define('OGP_LANG_users_passwd', "Contraseña");
  28. define('OGP_LANG_users_cpasswd', "Verificar contraseña");
  29. define('OGP_LANG_passwd_len', "La contraseña debe tener más de 6 caracteres");
  30. define('OGP_LANG_err_password', "La contraseña no puede estar en blanco");
  31. define('OGP_LANG_err_confirm_password', "El campo Verificar contraseña no puede estar en blanco");
  32. define('OGP_LANG_err_password_mismatch', "Las contraseñas no coinciden");
  33. define('OGP_LANG_phone_number', "Teléfono");
  34. define('OGP_LANG_users_email', "Email");
  35. define('OGP_LANG_register_a_new_user', "Registrar a un nuevo usuario");
  36. define('OGP_LANG_password_mismatch', "Las contraseñas no coinciden.");
  37. define('OGP_LANG_confirm_password', "Confirmar contraseña");
  38. define('OGP_LANG_successfull', "Registro completado");
  39. define('OGP_LANG_click_here', "Click aquí");
  40. define('OGP_LANG_to_login', "para entrar");
  41. define('OGP_LANG_registered_on', "Registrado el: %s");
  42. 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>OGP Mailer");
  43. define('OGP_LANG_err_captcha', "Captcha no coincide.");
  44. define('OGP_LANG_err_login_name', "Nombre de usuario vacío o en uso.");
  45. define('OGP_LANG_err_first_name', "Introduzca su nombre.");
  46. define('OGP_LANG_err_last_name', "Introduzca su apellido");
  47. define('OGP_LANG_err_phone_number', "Número de teléfono vacio.");
  48. define('OGP_LANG_err_email_address', "La dirección de email esta vacia o es incorrecta.");
  49. define('OGP_LANG_err_email_address_already_in_use_by', "La dirección de email esta en uso por <b>%s</b>.");
  50. define('OGP_LANG_user_registration', "Registro de Usuario");
  51. define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Los detalles de su cuenta han sido enviados a <b>%s</b>.");
  52. define('OGP_LANG_account_created', "Tu cuenta ha sido creada.");
  53. define('OGP_LANG_subject', "Asunto");
  54. ?>