<?php

# Copyright (c) 2010 - 2012  John Reese
# Copyright (c) 2012 - 2021  MantisBT Team - mantisbt-dev@lists.sourceforge.net
# Licensed under the MIT license

$s_plugin_Snippets_ = '';
$s_plugin_Snippets_name = 'Snippets';
$s_plugin_Snippets_description = 'Allow users to save blocks of text';

$s_plugin_Snippets_error_name_empty = 'The snippet name is empty.';
$s_plugin_Snippets_error_value_empty = 'The snippet value is empty.';

$s_plugin_Snippets_select_label = 'Snippets: ';
$s_plugin_Snippets_select_default = '--';

$s_plugin_Snippets_list_title = 'My Snippets';
$s_plugin_Snippets_list_global_title = 'Global Snippets';
$s_plugin_Snippets_list_name = 'Name';
$s_plugin_Snippets_list_value = 'Snippet';

$s_plugin_Snippets_edit_title = 'Edit My Snippets';
$s_plugin_Snippets_edit_global_title = 'Edit Global Snippets';
$s_plugin_Snippets_edit_name = 'Name';
$s_plugin_Snippets_edit_value = 'Snippet';

$s_plugin_Snippets_create_title = 'Create Snippet';
$s_plugin_Snippets_create_global_title = 'Create Global Snippet';
$s_plugin_Snippets_create_name = 'Name';
$s_plugin_Snippets_create_value = 'Snippet';

$s_plugin_Snippets_config = 'Configuration';
$s_plugin_Snippets_config_title = 'Snippet Configuration';
$s_plugin_Snippets_edit_global_threshold = 'Edit Global Snippets';
$s_plugin_Snippets_use_global_threshold = 'Use Global Snippets';
$s_plugin_Snippets_edit_own_threshold = 'Edit Own Snippets';

$s_plugin_Snippets_action_go = 'Go';
$s_plugin_Snippets_action_create = 'Create';
$s_plugin_Snippets_action_edit = 'Edit';
$s_plugin_Snippets_action_delete = 'Delete';
$s_plugin_Snippets_action_delete_confirm = 'Do you really want to delete the following snippets?';
$s_plugin_Snippets_action_update = 'Update';

$s_plugin_Snippets_pattern_title = 'Snippets Pattern Help';
$s_plugin_Snippets_pattern_help = '
	<p>Snippets can contain placeholder patterns that will be replaced
	with contextual data when pasted into a text field.</p>
	<p>The following placeholders are supported:</p>
	<table>
	<tr><td><strong>{user}</strong></td><td>Your username</td></tr>
	<tr><td><strong>{reporter}</strong></td><td>Bug reporter\'s name</td></tr>
	<tr><td><strong>{handler}</strong></td><td>Bug handler\'s name</td></tr>
	<tr><td><strong>{project}</strong></td><td>Project name</td></tr>
	</table>
	';

# String to use for {handler} placeholder when issue is not assigned
$s_plugin_Snippets_no_handler = '[Nobody]';

$s_plugin_Snippets_textarea_names = 'Use Snippets For';
