MantisBT-Discord – Rev 3

Subversion Repositories:
Rev:
<?php
/**
 * Slack Integration
 * Copyright (C) 2014 Karim Ratib (karim@meedan.com)
 *
 * Slack Integration is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License 2
 * as published by the Free Software Foundation.
 *
 * Slack Integration 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 Slack Integration; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 * or see http://www.gnu.org/licenses/.
 *
 * @author Roman Allenstein <http://roman-allenstein.de>
 */

$s_plugin_Discord_ = '';
$s_plugin_Discord_title = 'Discord Integration';
$s_plugin_Discord_description = 'Fügt die Integration von Discord (https://Discord.com) zu Mantis hinzu.';
$s_plugin_Discord_config = 'Konfiguration';
$s_plugin_Discord_url_webhook = 'Default Discord Webhook URL';
$s_plugin_Discord_url_webhooks = 'Additional Discord Webhook URLs';
//$s_plugin_Discord_bot_name = 'Discord Bot Name';
//$s_plugin_Discord_bot_icon = 'Discord Bot Icon';
//$s_plugin_Discord_default_channel = 'Standard Discord Channel';
//$s_plugin_Discord_channels = 'Discord Channels';
$s_plugin_Discord_language = 'Sprache';
$s_plugin_Discord_columns = 'Discord Spalten';
$s_plugin_Discord_bug_created = '[%s] %s erstellte __%s__ (%s)';
$s_plugin_Discord_bug_updated = '[%s] %s aktualisierte __%s__ (%s)';
$s_plugin_Discord_bug_deleted = '[%s] %s löschte %s.';
$s_plugin_Discord_bugnote_created = "[%s] %s kommentierte den Eintrag __%s__";
$s_plugin_Discord_bugnote_updated = "[%s] %s bearbeitete einen Kommentar im Eintrag __%s__";
$s_plugin_Discord_bugnote_deleted = "[%s] %s löschte einen Kommentar im Eintrag __%s__";
$s_plugin_Discord_no_user = '(niemand)';
$s_plugin_Discord_unknown_field = '(Es liegt keine Information vor, wie das Feld "%s" ausgegeben werden kann.)';

$MANTIS_ERROR['plugin_Discord_ERROR_NO_CURL'] = 'Das Discord Plugin benötigt die cURL PHP Erweiterung (http://php.net/curl)';
$MANTIS_ERROR['plugin_Discord_ERROR_PHP_VERSION'] = 'Das Discord plugin benötigt PHP 5.3.0 oder höher';