subusers.php 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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_first_name', "Nombre");
  26. define('OGP_LANG_last_name', "Apellidos");
  27. define('OGP_LANG_phone_number', "Telefono");
  28. define('OGP_LANG_email_address', "Dirección de correo electronico");
  29. define('OGP_LANG_register_a_new_user', "Registrar a un nuevo usuario");
  30. define('OGP_LANG_password_mismatch', "Las contraseñas no coinciden.");
  31. define('OGP_LANG_confirm_password', "Confirmar contraseña");
  32. define('OGP_LANG_subuser_password', "Contraseña del Subusuario");
  33. define('OGP_LANG_subuser_man', "Subusuarios");
  34. define('OGP_LANG_successfull', "Registro completado");
  35. define('OGP_LANG_click_here', "Click Aquí");
  36. define('OGP_LANG_to_login', "para entrar");
  37. define('OGP_LANG_registered_on', "Registrado el :: %s");
  38. 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!");
  39. define('OGP_LANG_err_password', "El campo de contraseña no puede permanecer vacío.");
  40. define('OGP_LANG_err_confirm_password', "Comprueba el campo de contraseña, no puede estar vacío.");
  41. define('OGP_LANG_err_password_mismatch', "Las contraseñas no coinciden.");
  42. define('OGP_LANG_err_captcha', "Captcha no coincide.");
  43. define('OGP_LANG_err_login_name', "Nombre de usuario vacio o en uso.");
  44. define('OGP_LANG_err_first_name', "Introduzca su nombre.");
  45. define('OGP_LANG_err_last_name', "No ha introducido apellidos.");
  46. define('OGP_LANG_err_phone_number', "Número de teléfono vacio.");
  47. define('OGP_LANG_err_email_address', "La dirección de email esta vacia o es incorrecta.");
  48. define('OGP_LANG_err_users_parent', "Las cuentas de subusuario no pueden crear otros usuarios.");
  49. define('OGP_LANG_err_parent_user', "La ID del usuario padre debe referenciar a un usuario pre-existente valido.");
  50. define('OGP_LANG_err_email_address_already_in_use_by', "La dirección de email esta en uso por <b>%s</b>.");
  51. define('OGP_LANG_user_registration', "Registro de Usuario");
  52. define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Los detalles de su cuenta han sido enviados a <b>%s</b>.");
  53. define('OGP_LANG_subject', "Hola %s, bienvenido a %s!");
  54. define('OGP_LANG_sub_user', "Subusuarios");
  55. define('OGP_LANG_create_sub_user', "Añadir subusuario");
  56. define('OGP_LANG_listdel_sub_user', "Lista, modifica o elimina información de las cuentas de subusuario.");
  57. define('OGP_LANG_delete_sub_user', "Eliminar Subusuario");
  58. define('OGP_LANG_del_subuser_conf', "Seguro que quieres eliminar esta cuenta?:");
  59. define('OGP_LANG_no_subusers', "No hay subusuarios disponibles para ser asignados a este grupo, crea alguna cuenta de usuario primero.");
  60. define('OGP_LANG_subuser_deleted', "El subusuario %s se eliminó de la base de datos correctamente!");
  61. define('OGP_LANG_subuser_added', "El subusuario %s se añadió a la base de datos correctamente!");
  62. define('OGP_LANG_your_subusers', "Cuentas de subusuario de su propiedad");
  63. ?>