MantisBT-Discord – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <?php
2 /**
3 * Slack Integration
4 * Copyright (C) 2014 Karim Ratib (karim@meedan.com)
5 *
6 * Slack Integration is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License 2
8 * as published by the Free Software Foundation.
9 *
10 * Slack Integration is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with Slack Integration; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 * or see http://www.gnu.org/licenses/.
19 *
20 * @author Roman Allenstein <http://roman-allenstein.de>
21 */
22  
23 $s_plugin_Discord_ = '';
24 $s_plugin_Discord_title = 'Discord Integration';
25 $s_plugin_Discord_description = 'Fügt die Integration von Discord (https://Discord.com) zu Mantis hinzu.';
26 $s_plugin_Discord_config = 'Konfiguration';
27 $s_plugin_Discord_url_webhook = 'Default Discord Webhook URL';
28 $s_plugin_Discord_url_webhooks = 'Additional Discord Webhook URLs';
2 office 29 //$s_plugin_Discord_bot_name = 'Discord Bot Name';
30 //$s_plugin_Discord_bot_icon = 'Discord Bot Icon';
31 //$s_plugin_Discord_default_channel = 'Standard Discord Channel';
32 //$s_plugin_Discord_channels = 'Discord Channels';
33 $s_plugin_Discord_language = 'Sprache';
1 office 34 $s_plugin_Discord_columns = 'Discord Spalten';
3 office 35 $s_plugin_Discord_bug_created = '[%s] %s erstellte __%s__ (%s)';
36 $s_plugin_Discord_bug_updated = '[%s] %s aktualisierte __%s__ (%s)';
1 office 37 $s_plugin_Discord_bug_deleted = '[%s] %s löschte %s.';
3 office 38 $s_plugin_Discord_bugnote_created = "[%s] %s kommentierte den Eintrag __%s__";
39 $s_plugin_Discord_bugnote_updated = "[%s] %s bearbeitete einen Kommentar im Eintrag __%s__";
40 $s_plugin_Discord_bugnote_deleted = "[%s] %s löschte einen Kommentar im Eintrag __%s__";
1 office 41 $s_plugin_Discord_no_user = '(niemand)';
42 $s_plugin_Discord_unknown_field = '(Es liegt keine Information vor, wie das Feld "%s" ausgegeben werden kann.)';
43  
44 $MANTIS_ERROR['plugin_Discord_ERROR_NO_CURL'] = 'Das Discord Plugin benötigt die cURL PHP Erweiterung (http://php.net/curl)';
45 $MANTIS_ERROR['plugin_Discord_ERROR_PHP_VERSION'] = 'Das Discord plugin benötigt PHP 5.3.0 oder höher';