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 Karim Ratib
 */

$s_plugin_Discord_ = '';
$s_plugin_Discord_title = 'Intégration de Discord';
$s_plugin_Discord_description = 'Plugiciel d\'intégration pour envoyer les notifications de Mantis à des channels de Discord.';
$s_plugin_Discord_config = 'Configuration';
$s_plugin_Discord_url_webhook = 'URL de webhook Discord de défaut';
$s_plugin_Discord_url_webhooks = 'URLs de webhook Discord additionnels';
//$s_plugin_Discord_bot_name = 'Nom du bot Discord';
//$s_plugin_Discord_bot_icon = 'Icône du bot Discord';
$s_plugin_Discord_skip_bulk = 'Ne pas envoyer de notification pour les actions en bloc';
$s_plugin_Discord_link_names = 'Convertir les noms d\'utilisateurs en liens Discord (peut causer des notifications excessives dans Discord)';
//$s_plugin_Discord_default_channel = 'Channel Discord de défault';
//$s_plugin_Discord_channels = 'Correspondances des channels';
//$s_plugin_Discord_usernames = 'Correspondances des noms d\'utilisateurs';
$s_plugin_Discord_language = 'Langue';
$s_plugin_Discord_columns = 'Champs de bogues';
$s_plugin_Discord_bug_created = '[%s] %s a crée __%s__ (%s)';
$s_plugin_Discord_bug_updated = '[%s] %s a modifié __%s__ (%s)';
$s_plugin_Discord_bug_deleted = '[%s] %s a effacé %s.';
$s_plugin_Discord_bugnote_created = "[%s] %s a commenté sur <%s>.";
$s_plugin_Discord_bugnote_updated = "[%s] %s a modifié un commentaire sur __%s__";
$s_plugin_Discord_bugnote_deleted = "[%s] %s a effacé un commentaire sur __%s__";
$s_plugin_Discord_no_user = '(personne)';
$s_plugin_Discord_unknown_field = '(incapable de visualiser le champ "%s")';
$s_plugin_Discord_skip = 'Ne pas envoyer de notification sur Discord';
$s_plugin_Discord_action_update = 'Envoyer';

$MANTIS_ERROR['plugin_Discord_ERROR_NO_CURL'] = 'Le plugiciel Discord requiert l\'extension cURL (http://php.net/curl)';
$MANTIS_ERROR['plugin_Discord_ERROR_PHP_VERSION'] = 'Le plugiciel Discord requiert PHP 5.3.0 ou plus';
$MANTIS_ERROR['plugin_Discord_ERROR_CURL'] = 'La requête pour Discord n\'est pas arrivée à destination.  Vérifiez votre URL de webhook.  Vérifiez aussi que le nom et l\'icône du bot Discord ne contiennent pas de caractère anormaux.   Regardez ci-dessous pour plus d\'informations.';