pt_BR_QueueService.pm
779 Bytes
# --
# Kernel/Modules/pt_BR_QueueService.pm - module to associate services per queue
#
# Copyright (C) 2014-2018 - SeTIC - UFSC - http://setic.ufsc.br/
#
# Version 2015-06-01 - Adjustments for OTRS 4
# Version 2018-01-03 - Adjustments for OTRS 6
#
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
package Kernel::Language::pt_BR_QueueService;
use strict;
use warnings;
use utf8;
sub Data {
my $Self = shift;
$Self->{Translation}->{'Services per queue'} = 'Serviços por fila';
$Self->{Translation}->{'Create and manages services per queue'} = 'Cria e gerencia serviços por fila';
return 1;
}
1;