175 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			175 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| /**
 | |
|  * Page Editor Lines
 | |
|  * Contains text strings used within the user interface of the
 | |
|  * WYSIWYG page editor. Some Markdown editor strings may still
 | |
|  * exist in the 'entities' file instead since this was added later.
 | |
|  */
 | |
| return [
 | |
|     // General editor terms
 | |
|     'general' => '通用',
 | |
|     'advanced' => '進階設定',
 | |
|     'none' => '無',
 | |
|     'cancel' => '取消',
 | |
|     'save' => '保存',
 | |
|     'close' => '關閉',
 | |
|     'undo' => '復原',
 | |
|     'redo' => '重做',
 | |
|     'left' => '左側',
 | |
|     'center' => '置中',
 | |
|     'right' => '右側',
 | |
|     'top' => '上方',
 | |
|     'middle' => '中間',
 | |
|     'bottom' => '底端',
 | |
|     'width' => '寬度',
 | |
|     'height' => '高度',
 | |
|     'More' => '更多',
 | |
|     'select' => '選擇...',
 | |
| 
 | |
|     // Toolbar
 | |
|     'formats' => '格式',
 | |
|     'header_large' => '大標題',
 | |
|     'header_medium' => '中標題',
 | |
|     'header_small' => '小標題',
 | |
|     'header_tiny' => '小標題',
 | |
|     'paragraph' => '段落',
 | |
|     'blockquote' => '引用塊',
 | |
|     'inline_code' => '行內程式碼',
 | |
|     'callouts' => '圖說文字',
 | |
|     'callout_information' => '資訊',
 | |
|     'callout_success' => '成功',
 | |
|     'callout_warning' => '警告',
 | |
|     'callout_danger' => '危險',
 | |
|     'bold' => '粗體',
 | |
|     'italic' => '斜體',
 | |
|     'underline' => '底線',
 | |
|     'strikethrough' => '刪除線',
 | |
|     'superscript' => '上標',
 | |
|     'subscript' => '下標',
 | |
|     'text_color' => '文本顏色',
 | |
|     'custom_color' => '自訂顏色',
 | |
|     'remove_color' => '移除颜色',
 | |
|     'background_color' => '背景顏色',
 | |
|     'align_left' => '置左',
 | |
|     'align_center' => '置中',
 | |
|     'align_right' => '置右',
 | |
|     'align_justify' => '兩端對齊',
 | |
|     'list_bullet' => '項目列表',
 | |
|     'list_numbered' => '編號列表',
 | |
|     'list_task' => '任務清單',
 | |
|     'indent_increase' => '增加縮進',
 | |
|     'indent_decrease' => '減少縮進',
 | |
|     'table' => '表格',
 | |
|     'insert_image' => '插入圖片',
 | |
|     'insert_image_title' => '插入/編輯圖像',
 | |
|     'insert_link' => '插入/編輯連結',
 | |
|     'insert_link_title' => '插入/編輯連結',
 | |
|     'insert_horizontal_line' => '插入水平線',
 | |
|     'insert_code_block' => '插入程式碼區塊',
 | |
|     'edit_code_block' => '編輯程式碼區塊',
 | |
|     'insert_drawing' => '插入/編輯向量圖',
 | |
|     'drawing_manager' => '向量圖管理員',
 | |
|     'insert_media' => '插入/編輯影片',
 | |
|     'insert_media_title' => '插入/編輯影片',
 | |
|     'clear_formatting' => '清除格式',
 | |
|     'source_code' => '原始碼',
 | |
|     'source_code_title' => '原始碼',
 | |
|     'fullscreen' => '全螢幕',
 | |
|     'image_options' => '圖片選項',
 | |
| 
 | |
|     // Tables
 | |
|     'table_properties' => '表格屬性',
 | |
|     'table_properties_title' => '表格屬性',
 | |
|     'delete_table' => '刪除表格',
 | |
|     'insert_row_before' => '插入上方列',
 | |
|     'insert_row_after' => '插入下方列',
 | |
|     'delete_row' => '刪除列',
 | |
|     'insert_column_before' => '插入欄位於左方',
 | |
|     'insert_column_after' => '插入欄位於右方',
 | |
|     'delete_column' => '刪除欄',
 | |
|     'table_cell' => '儲存格',
 | |
|     'table_row' => '行',
 | |
|     'table_column' => '欄',
 | |
|     'cell_properties' => 'Cell properties',
 | |
|     'cell_properties_title' => 'Cell Properties',
 | |
|     'cell_type' => 'Cell type',
 | |
|     'cell_type_cell' => 'Cell',
 | |
|     'cell_scope' => 'Scope',
 | |
|     'cell_type_header' => 'Header cell',
 | |
|     'merge_cells' => 'Merge cells',
 | |
|     'split_cell' => 'Split cell',
 | |
|     'table_row_group' => 'Row Group',
 | |
|     'table_column_group' => 'Column Group',
 | |
|     'horizontal_align' => 'Horizontal align',
 | |
|     'vertical_align' => 'Vertical align',
 | |
|     'border_width' => 'Border width',
 | |
|     'border_style' => 'Border style',
 | |
|     'border_color' => 'Border color',
 | |
|     'row_properties' => 'Row properties',
 | |
|     'row_properties_title' => 'Row Properties',
 | |
|     'cut_row' => 'Cut row',
 | |
|     'copy_row' => 'Copy row',
 | |
|     'paste_row_before' => 'Paste row before',
 | |
|     'paste_row_after' => 'Paste row after',
 | |
|     'row_type' => 'Row type',
 | |
|     'row_type_header' => '頁眉',
 | |
|     'row_type_body' => '正文',
 | |
|     'row_type_footer' => '页脚',
 | |
|     'alignment' => 'Alignment',
 | |
|     'cut_column' => 'Cut column',
 | |
|     'copy_column' => 'Copy column',
 | |
|     'paste_column_before' => 'Paste column before',
 | |
|     'paste_column_after' => 'Paste column after',
 | |
|     'cell_padding' => 'Cell padding',
 | |
|     'cell_spacing' => 'Cell spacing',
 | |
|     'caption' => 'Caption',
 | |
|     'show_caption' => 'Show caption',
 | |
|     'constrain' => 'Constrain proportions',
 | |
|     'cell_border_solid' => 'Solid',
 | |
|     'cell_border_dotted' => 'Dotted',
 | |
|     'cell_border_dashed' => 'Dashed',
 | |
|     'cell_border_double' => 'Double',
 | |
|     'cell_border_groove' => 'Groove',
 | |
|     'cell_border_ridge' => 'Ridge',
 | |
|     'cell_border_inset' => 'Inset',
 | |
|     'cell_border_outset' => 'Outset',
 | |
|     'cell_border_none' => 'None',
 | |
|     'cell_border_hidden' => 'Hidden',
 | |
| 
 | |
|     // Images, links, details/summary & embed
 | |
|     'source' => '來源',
 | |
|     'alt_desc' => 'Alternative description',
 | |
|     'embed' => 'Embed',
 | |
|     'paste_embed' => 'Paste your embed code below:',
 | |
|     'url' => '網址',
 | |
|     'text_to_display' => 'Text to display',
 | |
|     'title' => 'Title',
 | |
|     'open_link' => 'Open link',
 | |
|     'open_link_in' => 'Open link in...',
 | |
|     'open_link_current' => 'Current window',
 | |
|     'open_link_new' => 'New window',
 | |
|     'remove_link' => 'Remove link',
 | |
|     'insert_collapsible' => 'Insert collapsible block',
 | |
|     'collapsible_unwrap' => 'Unwrap',
 | |
|     'edit_label' => '編輯標記',
 | |
|     'toggle_open_closed' => 'Toggle open/closed',
 | |
|     'collapsible_edit' => 'Edit collapsible block',
 | |
|     'toggle_label' => 'Toggle label',
 | |
| 
 | |
|     // About view
 | |
|     'about' => 'About the editor',
 | |
|     'about_title' => 'About the WYSIWYG Editor',
 | |
|     'editor_license' => 'Editor License & Copyright',
 | |
|     'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under the MIT license.',
 | |
|     'editor_tiny_license_link' => 'The copyright and license details of TinyMCE can be found here.',
 | |
|     'save_continue' => 'Save Page & Continue',
 | |
|     'callouts_cycle' => '(Keep pressing to toggle through types)',
 | |
|     'link_selector' => 'Link to content',
 | |
|     'shortcuts' => 'Shortcuts',
 | |
|     'shortcut' => 'Shortcut',
 | |
|     'shortcuts_intro' => 'The following shortcuts are available in the editor:',
 | |
|     'windows_linux' => '(Windows/Linux)',
 | |
|     'mac' => '(Mac)',
 | |
|     'description' => 'Description',
 | |
| ];
 |