55 lines
3 KiB
PHP
55 lines
3 KiB
PHP
<?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_users_fname', "Nome");
|
|
define('OGP_LANG_users_lname', "Sobrenome");
|
|
define('OGP_LANG_users_passwd', "Senha");
|
|
define('OGP_LANG_users_cpasswd', "Confirmar senha");
|
|
define('OGP_LANG_passwd_len', "A senha precisa ter pelo menos 6 caracteres");
|
|
define('OGP_LANG_err_password', "A senha não pode estar em branco");
|
|
define('OGP_LANG_err_confirm_password', "O campo de confirmação da senha não pode estar em branco");
|
|
define('OGP_LANG_err_password_mismatch', "As senhas não conferem");
|
|
define('OGP_LANG_phone_number', "telefone");
|
|
define('OGP_LANG_users_email', "E-mail");
|
|
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_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', "Ola,<br><br>Sua conta do Game Panel foi criada e já podes <a href='%s' target='_blank'>fazer login</a>.<br><br>Nome de Usuario: %s<br><br>ATENÇÃO--> Lembre-se de alterar sua senha com frequência mudar também na primeira vez que fizer login.<br><br>Por favor não responda esse email!<br><br>______________________________<br>GamePanel Mailer");
|
|
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_email_address_already_in_use_by', "O e-mail já está em uso por <b>%s</b>.");
|
|
define('OGP_LANG_user_registration', "Registo 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_account_created', "Sua conta foi criada.");
|
|
define('OGP_LANG_subject', "%s :: Informações da conta");
|
|
?>
|