mantis-matrix-integration – Rev 3
?pathlinks?
<?php
/**
* Matrix Integration
* Copyright (C) 2024 Wizardry and Steamworks (wizardry.steamworks@outlook.com)
* based on: Slack Integration by 2014 Karim Ratib (karim.ratib@gmail.com)
* License GPLv2
*/
$s_plugin_Matrix_ = '';
$s_plugin_Matrix_title = 'matrix.org Integration';
$s_plugin_Matrix_description = 'Adds matrix.org integration to Mantis.';
$s_plugin_Matrix_config = 'Configuration';
$s_plugin_Matrix_room = 'Matrix Room';
$s_plugin_Matrix_server = 'Matrix Server URL';
$s_plugin_Matrix_username = 'Matrix Bot Username';
$s_plugin_Matrix_password = 'Matrix Bot Password';
$s_plugin_Matrix_skip_bulk = 'Skip notification on bulk actions';
$s_plugin_Matrix_link_names = 'Turn user names into Slack links (may cause excess Slack notifications)';
//$s_plugin_Matrix_bug_created = '[%s] %s created <%s|%s>.';
$s_plugin_Matrix_bug_created = '<b>%s</b><br/><hr/>%s created report <a href="%s">%s</a>';
//$s_plugin_Matrix_bug_updated = '[%s] %s updated <%s|%s>.';
$s_plugin_Matrix_bug_updated = '<b>%s</b><br/><hr/>%s updated report <a href="%s">%s</a>';
//$s_plugin_Matrix_bug_deleted = '[%s] %s deleted %s.';
$s_plugin_Matrix_bug_deleted = '<b>%s</b><br/><hr/>%s deleted report <a href="%s">%s</a>';
//$s_plugin_Matrix_bugnote_created = '[%s] %s commented on <%s|%s> saying:\n%s';
$s_plugin_Matrix_bugnote_created = '<b>%s</b><br/><hr/>%s commented on report <a href="%s">%s</a>';
//$s_plugin_Matrix_bugnote_updated = '[%s] %s edited a comment on <%s|%s> saying:\n%s';
$s_plugin_Matrix_bugnote_updated = '<b>%s</b><br/><hr/>%s edited a comment on report <a href="%s">%s</a>';
//$s_plugin_Matrix_bugnote_deleted = '[%s] %s deleted a comment on <%s|%s>.';
$s_plugin_Matrix_bugnote_deleted = '<b>%s</b><br/><hr/>%s deleted a comment on report <a href="%s">%s</a>';
$s_plugin_Matrix_no_user = '(no one)';
$s_plugin_Matrix_unknown_field = '(don\'t know how to render field "%s")';
$s_plugin_Matrix_skip = 'Skip Matrix notification';
$MANTIS_ERROR['plugin_Matrix_ERROR_PHP_VERSION'] = 'The Matrix plugin requires PHP 5.3.0 or higher';