|
| 1 | +<?php |
| 2 | + |
| 3 | +# Copyright (c) 2010 - 2012 John Reese |
| 4 | +# Copyright (c) 2012 - 2017 MantisBT Team - [email protected] |
| 5 | +# Licensed under the MIT license |
| 6 | + |
| 7 | +$s_plugin_Snippets_ = ''; |
| 8 | +$s_plugin_Snippets_name = 'Snippets'; |
| 9 | +$s_plugin_Snippets_description = 'Allow users to save blocks of text'; |
| 10 | + |
| 11 | +$s_plugin_Snippets_error_name_empty = 'The snippet name is empty.'; |
| 12 | +$s_plugin_Snippets_error_value_empty = 'The snippet value is empty.'; |
| 13 | + |
| 14 | +$s_plugin_Snippets_select_label = '문구: '; |
| 15 | +$s_plugin_Snippets_select_default = '--'; |
| 16 | + |
| 17 | +$s_plugin_Snippets_list_title = '내 고정문구'; |
| 18 | +$s_plugin_Snippets_list_global_title = '전체 고정문구'; |
| 19 | +$s_plugin_Snippets_list_name = '제목'; |
| 20 | +$s_plugin_Snippets_list_value = '노출 문구'; |
| 21 | + |
| 22 | +$s_plugin_Snippets_edit_title = '내 고정문구 편집'; |
| 23 | +$s_plugin_Snippets_edit_global_title = '전체 고정문구 편집'; |
| 24 | +$s_plugin_Snippets_edit_name = '제목'; |
| 25 | +$s_plugin_Snippets_edit_value = '노출 문구'; |
| 26 | + |
| 27 | +$s_plugin_Snippets_create_title = '내 고정문구 생성하기'; |
| 28 | +$s_plugin_Snippets_create_global_title = '전체 고정문구 생성하기'; |
| 29 | +$s_plugin_Snippets_create_name = '제목'; |
| 30 | +$s_plugin_Snippets_create_value = '노출 문구'; |
| 31 | + |
| 32 | +$s_plugin_Snippets_config = '설정'; |
| 33 | +$s_plugin_Snippets_config_title = '고정문구 설정'; |
| 34 | +$s_plugin_Snippets_edit_global_threshold = '전체 고정문구 편집권한'; |
| 35 | +$s_plugin_Snippets_use_global_threshold = '전체 고정문구 사용권한'; |
| 36 | +$s_plugin_Snippets_edit_own_threshold = '내 고정문구 편집권한'; |
| 37 | + |
| 38 | +$s_plugin_Snippets_action_go = '선택'; |
| 39 | +$s_plugin_Snippets_action_create = '생성하기'; |
| 40 | +$s_plugin_Snippets_action_edit = '편집'; |
| 41 | +$s_plugin_Snippets_action_delete = '삭제'; |
| 42 | +$s_plugin_Snippets_action_delete_confirm = '"아래 문구를 삭제합니다."'; |
| 43 | +$s_plugin_Snippets_action_update = '업데이트'; |
| 44 | + |
| 45 | +$s_plugin_Snippets_pattern_title = 'Snippets Pattern Help'; |
| 46 | +$s_plugin_Snippets_pattern_help = ' |
| 47 | + <p>Snippets can contain placeholder patterns that will be replaced |
| 48 | + with contextual data when pasted into a text field.</p> |
| 49 | + <p>The following placeholders are supported:</p> |
| 50 | + <table> |
| 51 | + <tr><td><strong>{user}</strong></td><td>Your username</td></tr> |
| 52 | + <tr><td><strong>{reporter}</strong></td><td>Bug reporter\'s name</td></tr> |
| 53 | + <tr><td><strong>{handler}</strong></td><td>Bug handler\'s name</td></tr> |
| 54 | + <tr><td><strong>{project}</strong></td><td>Project name</td></tr> |
| 55 | + </table> |
| 56 | + '; |
| 57 | + |
| 58 | +$s_plugin_Snippets_textarea_names = 'Use Snippets For'; |
0 commit comments