]> BookStack Code Mirror - bookstack/blob - lang/en/editor.php
Lexical: Added about button/view
[bookstack] / lang / en / editor.php
1 <?php
2 /**
3  * Page Editor Lines
4  * Contains text strings used within the user interface of the
5  * WYSIWYG page editor. Some Markdown editor strings may still
6  * exist in the 'entities' file instead since this was added later.
7  */
8 return [
9     // General editor terms
10     'general' => 'General',
11     'advanced' => 'Advanced',
12     'none' => 'None',
13     'cancel' => 'Cancel',
14     'save' => 'Save',
15     'close' => 'Close',
16     'undo' => 'Undo',
17     'redo' => 'Redo',
18     'left' => 'Left',
19     'center' => 'Center',
20     'right' => 'Right',
21     'top' => 'Top',
22     'middle' => 'Middle',
23     'bottom' => 'Bottom',
24     'width' => 'Width',
25     'height' => 'Height',
26     'More' => 'More',
27     'select' => 'Select...',
28
29     // Toolbar
30     'formats' => 'Formats',
31     'header_large' => 'Large Header',
32     'header_medium' => 'Medium Header',
33     'header_small' => 'Small Header',
34     'header_tiny' => 'Tiny Header',
35     'paragraph' => 'Paragraph',
36     'blockquote' => 'Blockquote',
37     'inline_code' => 'Inline code',
38     'callouts' => 'Callouts',
39     'callout_information' => 'Information',
40     'callout_success' => 'Success',
41     'callout_warning' => 'Warning',
42     'callout_danger' => 'Danger',
43     'bold' => 'Bold',
44     'italic' => 'Italic',
45     'underline' => 'Underline',
46     'strikethrough' => 'Strikethrough',
47     'superscript' => 'Superscript',
48     'subscript' => 'Subscript',
49     'text_color' => 'Text color',
50     'custom_color' => 'Custom color',
51     'remove_color' => 'Remove color',
52     'background_color' => 'Background color',
53     'align_left' => 'Align left',
54     'align_center' => 'Align center',
55     'align_right' => 'Align right',
56     'align_justify' => 'Justify',
57     'list_bullet' => 'Bullet list',
58     'list_numbered' => 'Numbered list',
59     'list_task' => 'Task list',
60     'indent_increase' => 'Increase indent',
61     'indent_decrease' => 'Decrease indent',
62     'table' => 'Table',
63     'insert_image' => 'Insert image',
64     'insert_image_title' => 'Insert/Edit Image',
65     'insert_link' => 'Insert/edit link',
66     'insert_link_title' => 'Insert/Edit Link',
67     'insert_horizontal_line' => 'Insert horizontal line',
68     'insert_code_block' => 'Insert code block',
69     'edit_code_block' => 'Edit code block',
70     'insert_drawing' => 'Insert/edit drawing',
71     'drawing_manager' => 'Drawing manager',
72     'insert_media' => 'Insert/edit media',
73     'insert_media_title' => 'Insert/Edit Media',
74     'clear_formatting' => 'Clear formatting',
75     'source_code' => 'Source code',
76     'source_code_title' => 'Source Code',
77     'fullscreen' => 'Fullscreen',
78     'image_options' => 'Image options',
79
80     // Tables
81     'table_properties' => 'Table properties',
82     'table_properties_title' => 'Table Properties',
83     'delete_table' => 'Delete table',
84     'table_clear_formatting' => 'Clear table formatting',
85     'resize_to_contents' => 'Resize to contents',
86     'row_header' => 'Row header',
87     'insert_row_before' => 'Insert row before',
88     'insert_row_after' => 'Insert row after',
89     'delete_row' => 'Delete row',
90     'insert_column_before' => 'Insert column before',
91     'insert_column_after' => 'Insert column after',
92     'delete_column' => 'Delete column',
93     'table_cell' => 'Cell',
94     'table_row' => 'Row',
95     'table_column' => 'Column',
96     'cell_properties' => 'Cell properties',
97     'cell_properties_title' => 'Cell Properties',
98     'cell_type' => 'Cell type',
99     'cell_type_cell' => 'Cell',
100     'cell_scope' => 'Scope',
101     'cell_type_header' => 'Header cell',
102     'merge_cells' => 'Merge cells',
103     'split_cell' => 'Split cell',
104     'table_row_group' => 'Row Group',
105     'table_column_group' => 'Column Group',
106     'horizontal_align' => 'Horizontal align',
107     'vertical_align' => 'Vertical align',
108     'border_width' => 'Border width',
109     'border_style' => 'Border style',
110     'border_color' => 'Border color',
111     'row_properties' => 'Row properties',
112     'row_properties_title' => 'Row Properties',
113     'cut_row' => 'Cut row',
114     'copy_row' => 'Copy row',
115     'paste_row_before' => 'Paste row before',
116     'paste_row_after' => 'Paste row after',
117     'row_type' => 'Row type',
118     'row_type_header' => 'Header',
119     'row_type_body' => 'Body',
120     'row_type_footer' => 'Footer',
121     'alignment' => 'Alignment',
122     'cut_column' => 'Cut column',
123     'copy_column' => 'Copy column',
124     'paste_column_before' => 'Paste column before',
125     'paste_column_after' => 'Paste column after',
126     'cell_padding' => 'Cell padding',
127     'cell_spacing' => 'Cell spacing',
128     'caption' => 'Caption',
129     'show_caption' => 'Show caption',
130     'constrain' => 'Constrain proportions',
131     'cell_border_solid' => 'Solid',
132     'cell_border_dotted' => 'Dotted',
133     'cell_border_dashed' => 'Dashed',
134     'cell_border_double' => 'Double',
135     'cell_border_groove' => 'Groove',
136     'cell_border_ridge' => 'Ridge',
137     'cell_border_inset' => 'Inset',
138     'cell_border_outset' => 'Outset',
139     'cell_border_none' => 'None',
140     'cell_border_hidden' => 'Hidden',
141
142     // Images, links, details/summary & embed
143     'source' => 'Source',
144     'alt_desc' => 'Alternative description',
145     'embed' => 'Embed',
146     'paste_embed' => 'Paste your embed code below:',
147     'url' => 'URL',
148     'text_to_display' => 'Text to display',
149     'title' => 'Title',
150     'open_link' => 'Open link',
151     'open_link_in' => 'Open link in...',
152     'open_link_current' => 'Current window',
153     'open_link_new' => 'New window',
154     'remove_link' => 'Remove link',
155     'insert_collapsible' => 'Insert collapsible block',
156     'collapsible_unwrap' => 'Unwrap',
157     'edit_label' => 'Edit label',
158     'toggle_open_closed' => 'Toggle open/closed',
159     'collapsible_edit' => 'Edit collapsible block',
160     'toggle_label' => 'Toggle label',
161
162     // About view
163     'about' => 'About the editor',
164     'about_title' => 'About the WYSIWYG Editor',
165     'editor_license' => 'Editor License & Copyright',
166     'editor_lexical_license' => 'This editor is built as a fork of :lexicalLink which is distributed under the MIT license.',
167     'editor_lexical_license_link' => 'Full license details can be found here.',
168     'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under the MIT license.',
169     'editor_tiny_license_link' => 'The copyright and license details of TinyMCE can be found here.',
170     'save_continue' => 'Save Page & Continue',
171     'callouts_cycle' => '(Keep pressing to toggle through types)',
172     'link_selector' => 'Link to content',
173     'shortcuts' => 'Shortcuts',
174     'shortcut' => 'Shortcut',
175     'shortcuts_intro' => 'The following shortcuts are available in the editor:',
176     'windows_linux' => '(Windows/Linux)',
177     'mac' => '(Mac)',
178     'description' => 'Description',
179 ];