subusers.php 3.7 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', "Nome de usuário");
  25. define('OGP_LANG_first_name', "Nome");
  26. define('OGP_LANG_last_name', "Sobrenome");
  27. define('OGP_LANG_phone_number', "telefone");
  28. define('OGP_LANG_email_address', "Email");
  29. define('OGP_LANG_register_a_new_user', "Adicionar usuário");
  30. define('OGP_LANG_password_mismatch', "A senha não corresponde");
  31. define('OGP_LANG_confirm_password', "Confirmação de senha");
  32. define('OGP_LANG_subuser_password', "Senha do sub-usuário");
  33. define('OGP_LANG_subuser_man', "Gerenciamento de sub-usuários");
  34. define('OGP_LANG_successfull', "Concluído");
  35. define('OGP_LANG_click_here', "Clique aqui");
  36. define('OGP_LANG_to_login', "Para logar");
  37. define('OGP_LANG_registered_on', "Registado em :: %s");
  38. define('OGP_LANG_register_message', "Olá,<br>Sua conta foi criada.<br><br>Usuário: %s<br>Password: %s<br><br>Você pode alterar a senha de sua conta.<br>Obrigado!<br>Um administrador.<br>Este e-mail foi criado automaticamente, ¡Por favor, não responda isso!");
  39. define('OGP_LANG_err_password', "A senha não pode estar vazia");
  40. define('OGP_LANG_err_confirm_password', "O campo \"Verificação de password\" não pode estar vazio");
  41. define('OGP_LANG_err_password_mismatch', "As senhas não combinam");
  42. define('OGP_LANG_err_captcha', "Captcha incorrecto.");
  43. define('OGP_LANG_err_login_name', "Nome de usuário está vazio ou em uso.");
  44. define('OGP_LANG_err_first_name', "Deve especificar o seu nome.");
  45. define('OGP_LANG_err_last_name', "Deve especificar o seu Sobrenome.");
  46. define('OGP_LANG_err_phone_number', "Número de telefone está vazia.");
  47. define('OGP_LANG_err_email_address', "Endereço de e-mail está vazio ou incorreto.");
  48. define('OGP_LANG_err_users_parent', "As contas de sub-usuário podem não criar outros usuários.");
  49. define('OGP_LANG_err_parent_user', "A ID do usuário pai deve fazer referência a um usuário pré-existente válido.");
  50. define('OGP_LANG_err_email_address_already_in_use_by', "O e-mail já está em uso por <b>%s</b>.");
  51. define('OGP_LANG_user_registration', "Registro de Usuário");
  52. define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Detalhes de sua conta foi enviado por e-mail para <b>%s</b>.");
  53. define('OGP_LANG_subject', "Ola %s, bem-vindo ao %s!");
  54. define('OGP_LANG_sub_user', "Sub-usuários");
  55. define('OGP_LANG_create_sub_user', "Adicionar Sub-usuário");
  56. define('OGP_LANG_listdel_sub_user', "Lista, Modificar Informações da Conta de Sub-Usuário, ou APAGAR Sub-Usuario");
  57. define('OGP_LANG_delete_sub_user', "Editar / Excluir Sub Usuário");
  58. define('OGP_LANG_del_subuser_conf', "Tem certeza de que deseja excluir esta conta:");
  59. define('OGP_LANG_no_subusers', "Nenhum sub-usuario foi criado com sua conta ainda!");
  60. define('OGP_LANG_subuser_deleted', "Sub-User %s foi excluído com sucesso do banco de dados!");
  61. define('OGP_LANG_subuser_added', "Sub-User %s foi criado com sucesso e adicionado ao banco de dados!");
  62. define('OGP_LANG_your_subusers', "Contas de sub-usuários já se encontram em sua posse");
  63. ?>