mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
43 lines
2.5 KiB
PHP
43 lines
2.5 KiB
PHP
<?php
|
|
// Copyright (C) 2010-2023 Combodo SARL
|
|
//
|
|
// This file is part of iTop.
|
|
//
|
|
// iTop is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// iTop 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 Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with iTop. If not, see <http://www.gnu.org/licenses/>
|
|
/**
|
|
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
|
'Class:UserLocal' => 'Usuário local',
|
|
'Class:UserLocal+' => '',
|
|
'Class:UserLocal/Attribute:password' => 'Senha',
|
|
'Class:UserLocal/Attribute:password+' => '',
|
|
'Class:UserLocal/Attribute:expiration' => 'Expiração da senha',
|
|
'Class:UserLocal/Attribute:expiration+' => 'Status de expiração de senha (Requer uma extensão para fazer efeito)',
|
|
'Class:UserLocal/Attribute:expiration/Value:can_expire' => 'Senha expira',
|
|
'Class:UserLocal/Attribute:expiration/Value:can_expire+' => '',
|
|
'Class:UserLocal/Attribute:expiration/Value:never_expire' => 'Senha nunca expira',
|
|
'Class:UserLocal/Attribute:expiration/Value:never_expire+' => '',
|
|
'Class:UserLocal/Attribute:expiration/Value:force_expire' => 'Senha expirada',
|
|
'Class:UserLocal/Attribute:expiration/Value:force_expire+' => '',
|
|
'Class:UserLocal/Attribute:expiration/Value:otp_expire' => 'One-Time Password (OTP)',
|
|
'Class:UserLocal/Attribute:expiration/Value:otp_expire+' => 'Senha não pode ser alterada pelo usuário',
|
|
'Class:UserLocal/Attribute:password_renewed_date' => 'Data da última alteração de senha',
|
|
'Class:UserLocal/Attribute:password_renewed_date+' => 'Quando a senha foi alterada anteriormente',
|
|
'Error:UserLocalPasswordValidator:UserPasswordPolicyRegex:ValidationFailed' => 'A senha deve ter no mínimo 8 caracteres e incluir letras maiúsculas, minúsculas, números e símbolos',
|
|
'UserLocal:password:expiration' => 'O campo abaixo requer uma extensão',
|
|
'Class:UserLocal/Error:OneTimePasswordChangeIsNotAllowed' => 'Definir a expiração da senha para One-Time Password (OTP) não é permitido para o seu próprio usuário',
|
|
));
|