Files
scripts/Perl OTRS/Kernel/Language/bg_SystemMonitoring.pm
2024-10-14 00:08:40 +02:00

54 lines
3.6 KiB
Perl
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# --
# 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::bg_SystemMonitoring;
use strict;
use warnings;
use utf8;
sub Data {
my $Self = shift;
# SysConfig
$Self->{Translation}->{'Basic mail interface to System Monitoring Suites. Use this block if the filter should run AFTER PostMasterFilter.'} =
'Основен интерфейс за поща към системния мониторинг. Използвайте този блок, ако филтърът трябва да се изпълнява СЛЕД Филтърът за пощенска администрация';
$Self->{Translation}->{'Basic mail interface to System Monitoring Suites. Use this block if the filter should run BEFORE PostMasterFilter.'} =
'Основен интерфейс за поща към системния мониторинг. Използвайте този блок, ако филтърът трябва да се изпълнява ПРЕДИ Филтърът за пощенска администрация.';
$Self->{Translation}->{'Define Nagios acknowledge type.'} = 'Определете типа признаване на Nagios.';
$Self->{Translation}->{'HTTP'} = '';
$Self->{Translation}->{'Icinga API URL.'} = '';
$Self->{Translation}->{'Icinga2 acknowledgement author.'} = '';
$Self->{Translation}->{'Icinga2 acknowledgement comment.'} = '';
$Self->{Translation}->{'Icinga2 acknowledgement enabled?'} = '';
$Self->{Translation}->{'Icinga2 acknowledgement notify.'} = '';
$Self->{Translation}->{'Icinga2 acknowledgement sticky.'} = '';
$Self->{Translation}->{'Link an already opened incident ticket with the affected CI. This is only possible when a subsequent system monitoring email arrives.'} =
'Свържете вече отворен билет за инцидент със засегнатия CI. Това е възможно само при пристигането на последващ имейл за наблюдение на системата.';
$Self->{Translation}->{'Name of the Dynamic Field for Host.'} = 'Име на динамичното поле за хост.';
$Self->{Translation}->{'Name of the Dynamic Field for Service.'} = 'Име на динамичното поле за обслужване.';
$Self->{Translation}->{'Named pipe acknowledge command.'} = 'Команда за потвърждаване на име pipe.';
$Self->{Translation}->{'Named pipe acknowledge format for host.'} = '';
$Self->{Translation}->{'Named pipe acknowledge format for service.'} = '';
$Self->{Translation}->{'Set the incident state of a CI automatically when a system monitoring email arrives.'} =
'Настройте инцидентното състояние на CI автоматично, когато пристигне имейл за мониторинг на системата.';
$Self->{Translation}->{'The HTTP acknowledge URL.'} = '';
$Self->{Translation}->{'The HTTP acknowledge password.'} = '';
$Self->{Translation}->{'The HTTP acknowledge user.'} = '';
$Self->{Translation}->{'Ticket event module to send an acknowledge to Icinga2.'} = '';
$Self->{Translation}->{'Ticket event module to send an acknowledge to Nagios.'} = '';
$Self->{Translation}->{'pipe'} = '';
push @{ $Self->{JavaScriptStrings} // [] }, (
);
}
1;