<?php
/**
 * Slack Integration
 * Copyright (C) Karim Ratib (karim.ratib@gmail.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/.
 */

$s_plugin_Slack_ = '';
$s_plugin_Slack_title = 'Slack Integration';
$s_plugin_Slack_description = 'Adds Slack integration to Mantis.';
$s_plugin_Slack_config = 'Configuration';
$s_plugin_Slack_url_webhook = 'Default Slack Webhook URL';
$s_plugin_Slack_url_webhook_test = 'Test Webhook';
$s_plugin_Slack_url_webhook_test_text = 'Hello, this is a test for the MantisBT-Slack plugin :wave:';
$s_plugin_Slack_url_webhooks = 'Additional Slack Webhook URLs';
$s_plugin_Slack_bot_name = 'Slack Bot Name';
$s_plugin_Slack_bot_icon = 'Slack Bot Icon';
$s_plugin_Slack_notifications = 'Notification Settings';
$s_plugin_Slack_notification_bug_report = 'Notify on issue added';
$s_plugin_Slack_notification_bug_update = 'Notify on issue edited';
$s_plugin_Slack_notification_bug_deleted = 'Notify on issue deleted';
$s_plugin_Slack_notification_bugnote_add = 'Notify on note added';
$s_plugin_Slack_notification_bugnote_edit = 'Notify on note edited';
$s_plugin_Slack_notification_bugnote_deleted = 'Notify on note deleted';
$s_plugin_Slack_skip_private = 'Skip notification on private issues and notes';
$s_plugin_Slack_skip_bulk = 'Skip notification on bulk actions';
$s_plugin_Slack_link_names = 'Turn user names into Slack links (may cause excess Slack notifications)';
$s_plugin_Slack_default_channel = 'Default Slack Channel';
$s_plugin_Slack_channels = 'Slack Channels';
$s_plugin_Slack_usernames = 'Slack Usernames';
$s_plugin_Slack_columns = 'Slack Columns';
$s_plugin_Slack_bug_created = '[%s] %s created <%s|%s>.';
$s_plugin_Slack_bug_updated = '[%s] %s updated <%s|%s>.';
$s_plugin_Slack_bug_deleted = '[%s] %s deleted %s.';
$s_plugin_Slack_bugnote_created = "[%s] %s commented on <%s|%s> saying:";
$s_plugin_Slack_bugnote_updated = "[%s] %s edited a comment on <%s|%s> saying:";
$s_plugin_Slack_bugnote_deleted = "[%s] %s deleted a comment on <%s|%s>.";
$s_plugin_Slack_no_user = '(no one)';
$s_plugin_Slack_unknown_field = '(don\'t know how to render field "%s")';
$s_plugin_Slack_skip = 'Skip Slack notification';
$s_plugin_Slack_action_update = 'Update';

$MANTIS_ERROR['plugin_Slack_ERROR_NO_CURL'] = 'The Slack plugin requires the cURL PHP extension (http://php.net/curl)';
$MANTIS_ERROR['plugin_Slack_ERROR_PHP_VERSION'] = 'The Slack plugin requires PHP 5.3.0 or higher';
$MANTIS_ERROR['plugin_Slack_ERROR_CURL'] = 'The request to Slack didn\'t go through.  Check your webhook URL.  Also make sure there are no unusual characters in your bot name or bot icon settings.  Further details may be printed below this box.';
