| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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', "Nome de usuário");
- define('OGP_LANG_first_name', "Nome");
- define('OGP_LANG_last_name', "Sobrenome");
- define('OGP_LANG_phone_number', "telefone");
- define('OGP_LANG_email_address', "Email");
- define('OGP_LANG_register_a_new_user', "Adicionar usuário");
- define('OGP_LANG_password_mismatch', "A senha não corresponde");
- define('OGP_LANG_confirm_password', "Confirmação de senha");
- define('OGP_LANG_subuser_password', "Senha do sub-usuário");
- define('OGP_LANG_subuser_man', "Gerenciamento de sub-usuários");
- define('OGP_LANG_successfull', "Concluído");
- define('OGP_LANG_click_here', "Clique aqui");
- define('OGP_LANG_to_login', "Para logar");
- define('OGP_LANG_registered_on', "Registado em :: %s");
- 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!");
- define('OGP_LANG_err_password', "A senha não pode estar vazia");
- define('OGP_LANG_err_confirm_password', "O campo \"Verificação de password\" não pode estar vazio");
- define('OGP_LANG_err_password_mismatch', "As senhas não combinam");
- define('OGP_LANG_err_captcha', "Captcha incorrecto.");
- define('OGP_LANG_err_login_name', "Nome de usuário está vazio ou em uso.");
- define('OGP_LANG_err_first_name', "Deve especificar o seu nome.");
- define('OGP_LANG_err_last_name', "Deve especificar o seu Sobrenome.");
- define('OGP_LANG_err_phone_number', "Número de telefone está vazia.");
- define('OGP_LANG_err_email_address', "Endereço de e-mail está vazio ou incorreto.");
- define('OGP_LANG_err_users_parent', "As contas de sub-usuário podem não criar outros usuários.");
- define('OGP_LANG_err_parent_user', "A ID do usuário pai deve fazer referência a um usuário pré-existente válido.");
- define('OGP_LANG_err_email_address_already_in_use_by', "O e-mail já está em uso por <b>%s</b>.");
- define('OGP_LANG_user_registration', "Registro de Usuário");
- 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>.");
- define('OGP_LANG_subject', "Ola %s, bem-vindo ao %s!");
- define('OGP_LANG_sub_user', "Sub-usuários");
- define('OGP_LANG_create_sub_user', "Adicionar Sub-usuário");
- define('OGP_LANG_listdel_sub_user', "Lista, Modificar Informações da Conta de Sub-Usuário, ou APAGAR Sub-Usuario");
- define('OGP_LANG_delete_sub_user', "Editar / Excluir Sub Usuário");
- define('OGP_LANG_del_subuser_conf', "Tem certeza de que deseja excluir esta conta:");
- define('OGP_LANG_no_subusers', "Nenhum sub-usuario foi criado com sua conta ainda!");
- define('OGP_LANG_subuser_deleted', "Sub-User %s foi excluído com sucesso do banco de dados!");
- define('OGP_LANG_subuser_added', "Sub-User %s foi criado com sucesso e adicionado ao banco de dados!");
- define('OGP_LANG_your_subusers', "Contas de sub-usuários já se encontram em sua posse");
- ?>
|