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 */
21  
22 $s_plugin_Discord_ = '';
23 $s_plugin_Discord_title = 'Discord-интеграция';
24 $s_plugin_Discord_description = 'Добавить интеграцию со Discord в Mantis.';
25 $s_plugin_Discord_config = 'Настройка';
26 $s_plugin_Discord_url_webhook = 'Discord Webhook URL по умолчанию';
27 $s_plugin_Discord_url_webhooks = 'Доплнительные Discord Webhook URLы';
2 office 28 //$s_plugin_Discord_bot_name = 'Имя Discord-бота';
29 //$s_plugin_Discord_bot_icon = 'Иконка Discord-бота';
1 office 30 $s_plugin_Discord_skip_bulk = 'Пропускать оповещения о групповых действиях';
31 $s_plugin_Discord_link_names = 'Делать имена пользователей ссылками (это может привести к большому количеству оповещений Discord)';
2 office 32 //$s_plugin_Discord_default_channel = 'Каналы Discord по умолчанию';
33 //$s_plugin_Discord_channels = 'Каналы Discord';
34 //$s_plugin_Discord_usernames = 'Пользователи Discord';
35 $s_plugin_Discord_language = 'язык';
1 office 36 $s_plugin_Discord_columns = 'Колонки Discord';
3 office 37 $s_plugin_Discord_bug_created = '[%s] %s создал __%s__ (%s)';
38 $s_plugin_Discord_bug_updated = '[%s] %s изменил __%s__ (%s)';
1 office 39 $s_plugin_Discord_bug_deleted = '[%s] %s удалил %s.';
3 office 40 $s_plugin_Discord_bugnote_created = "[%s] %s прокомментировал __%s__";
41 $s_plugin_Discord_bugnote_updated = "[%s] %s изменил комментарий к __%s__";
42 $s_plugin_Discord_bugnote_deleted = "[%s] %s удалил комментарий к __%s__";
1 office 43 $s_plugin_Discord_no_user = '(никто)';
44 $s_plugin_Discord_unknown_field = '(не знаю, как выводить поле "%s")';
45 $s_plugin_Discord_skip = 'Пропустить оповещение в Discord';
46 $s_plugin_Discord_action_update = 'Обновить';
47  
48 $MANTIS_ERROR['plugin_Discord_ERROR_NO_CURL'] = 'Discord-плагин требует PHP-расширение cURL (http://php.net/curl)';
49 $MANTIS_ERROR['plugin_Discord_ERROR_PHP_VERSION'] = 'Discord-плагин требует PHP 5.3.0 или больше';
50 $MANTIS_ERROR['plugin_Discord_ERROR_CURL'] = 'Не прошёл запрос к Discord. Проверьте свой webhook URL. Также убедитесь, что настройки имени и иконки бота не содержат необычных символов. Больше деталей может быть ниже.';