53 lines
2.4 KiB
Perl
53 lines
2.4 KiB
Perl
# --
|
|
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
|
|
# --
|
|
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
|
|
# the enclosed file COPYING for license information (GPL). If you
|
|
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
|
|
# --
|
|
|
|
package Kernel::Language::pt_BR_GeneralCatalog;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use utf8;
|
|
|
|
sub Data {
|
|
my $Self = shift;
|
|
|
|
# Template: AAAGeneralCatalog
|
|
$Self->{Translation}->{'Functionality'} = 'Funcionalidade';
|
|
|
|
# Template: AdminGeneralCatalog
|
|
$Self->{Translation}->{'General Catalog Management'} = 'Gerenciamento do Catálogo Geral';
|
|
$Self->{Translation}->{'Items in Class'} = 'Itens na Classe';
|
|
$Self->{Translation}->{'Edit Item'} = 'Alterar Item';
|
|
$Self->{Translation}->{'Add Class'} = 'Adicionar Classe';
|
|
$Self->{Translation}->{'Add Item'} = 'Adicionar Item';
|
|
$Self->{Translation}->{'Add Catalog Item'} = 'Adicionar Item ao Catálogo';
|
|
$Self->{Translation}->{'Add Catalog Class'} = 'Adicionar Classe ao Catálogo';
|
|
$Self->{Translation}->{'Catalog Class'} = 'Classe do Catálogo';
|
|
$Self->{Translation}->{'Edit Catalog Item'} = 'Alterar Item do Catálogo';
|
|
|
|
# SysConfig
|
|
$Self->{Translation}->{'Comment 2'} = 'Comentário 2';
|
|
$Self->{Translation}->{'Create and manage the General Catalog.'} = 'Criar e gerenciar o Catálogo Geral.';
|
|
$Self->{Translation}->{'Define the general catalog comment 2.'} = 'Defina o comentário 2 do catálogo genérico.';
|
|
$Self->{Translation}->{'Defines the URL JS Color Picker path.'} = 'Define o caminho URL JS Color Picket.';
|
|
$Self->{Translation}->{'Frontend module registration for the AdminGeneralCatalog configuration in the admin area.'} =
|
|
'Módulo de registo da interface para a configuração AdminGeneralCatalog na área administrativa.';
|
|
$Self->{Translation}->{'General Catalog'} = 'Catálogo Geral';
|
|
$Self->{Translation}->{'Parameters for the example comment 2 of the general catalog attributes.'} =
|
|
'Parâmetros para o comentário de exemplo 2 dos atributos do catálogo geral.';
|
|
$Self->{Translation}->{'Parameters for the example permission groups of the general catalog attributes.'} =
|
|
'Parâmetros do grupos de permissão de exemplo dos atributos do catálogo geral.';
|
|
$Self->{Translation}->{'Permission Group'} = '';
|
|
|
|
|
|
push @{ $Self->{JavaScriptStrings} // [] }, (
|
|
);
|
|
|
|
}
|
|
|
|
1;
|