]> BookStack Code Mirror - bookstack/blob - resources/lang/bs/editor.php
Fix Crowdin name in the language_request issue template
[bookstack] / resources / lang / bs / 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     'insert_drawing' => 'Insert/edit drawing',
70     'drawing_manager' => 'Drawing manager',
71     'insert_media' => 'Insert/edit media',
72     'insert_media_title' => 'Insert/Edit Media',
73     'clear_formatting' => 'Clear formatting',
74     'source_code' => 'Source code',
75     'source_code_title' => 'Source Code',
76     'fullscreen' => 'Fullscreen',
77     'image_options' => 'Image options',
78
79     // Tables
80     'table_properties' => 'Table properties',
81     'table_properties_title' => 'Table Properties',
82     'delete_table' => 'Delete table',
83     'insert_row_before' => 'Insert row before',
84     'insert_row_after' => 'Insert row after',
85     'delete_row' => 'Delete row',
86     'insert_column_before' => 'Insert column before',
87     'insert_column_after' => 'Insert column after',
88     'delete_column' => 'Delete column',
89     'table_cell' => 'Cell',
90     'table_row' => 'Row',
91     'table_column' => 'Column',
92     'cell_properties' => 'Cell properties',
93     'cell_properties_title' => 'Cell Properties',
94     'cell_type' => 'Cell type',
95     'cell_type_cell' => 'Cell',
96     'cell_scope' => 'Scope',
97     'cell_type_header' => 'Header cell',
98     'merge_cells' => 'Merge cells',
99     'split_cell' => 'Split cell',
100     'table_row_group' => 'Row Group',
101     'table_column_group' => 'Column Group',
102     'horizontal_align' => 'Horizontal align',
103     'vertical_align' => 'Vertical align',
104     'border_width' => 'Border width',
105     'border_style' => 'Border style',
106     'border_color' => 'Border color',
107     'row_properties' => 'Row properties',
108     'row_properties_title' => 'Row Properties',
109     'cut_row' => 'Cut row',
110     'copy_row' => 'Copy row',
111     'paste_row_before' => 'Paste row before',
112     'paste_row_after' => 'Paste row after',
113     'row_type' => 'Row type',
114     'row_type_header' => 'Header',
115     'row_type_body' => 'Body',
116     'row_type_footer' => 'Footer',
117     'alignment' => 'Alignment',
118     'cut_column' => 'Cut column',
119     'copy_column' => 'Copy column',
120     'paste_column_before' => 'Paste column before',
121     'paste_column_after' => 'Paste column after',
122     'cell_padding' => 'Cell padding',
123     'cell_spacing' => 'Cell spacing',
124     'caption' => 'Caption',
125     'show_caption' => 'Show caption',
126     'constrain' => 'Constrain proportions',
127     'cell_border_solid' => 'Solid',
128     'cell_border_dotted' => 'Dotted',
129     'cell_border_dashed' => 'Dashed',
130     'cell_border_double' => 'Double',
131     'cell_border_groove' => 'Groove',
132     'cell_border_ridge' => 'Ridge',
133     'cell_border_inset' => 'Inset',
134     'cell_border_outset' => 'Outset',
135     'cell_border_none' => 'None',
136     'cell_border_hidden' => 'Hidden',
137
138     // Images, links, details/summary & embed
139     'source' => 'Source',
140     'alt_desc' => 'Alternative description',
141     'embed' => 'Embed',
142     'paste_embed' => 'Paste your embed code below:',
143     'url' => 'URL',
144     'text_to_display' => 'Text to display',
145     'title' => 'Title',
146     'open_link' => 'Open link in...',
147     'open_link_current' => 'Current window',
148     'open_link_new' => 'New window',
149     'insert_collapsible' => 'Insert collapsible block',
150     'collapsible_unwrap' => 'Unwrap',
151     'edit_label' => 'Edit label',
152     'toggle_open_closed' => 'Toggle open/closed',
153     'collapsible_edit' => 'Edit collapsible block',
154     'toggle_label' => 'Toggle label',
155
156     // About view
157     'about' => 'About the editor',
158     'about_title' => 'About the WYSIWYG Editor',
159     'editor_license' => 'Editor License & Copyright',
160     'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under an LGPL v2.1 license.',
161     'editor_tiny_license_link' => 'The copyright and license details of TinyMCE can be found here.',
162     'save_continue' => 'Save Page & Continue',
163     'callouts_cycle' => '(Keep pressing to toggle through types)',
164     'link_selector' => 'Link to content',
165     'shortcuts' => 'Shortcuts',
166     'shortcut' => 'Shortcut',
167     'shortcuts_intro' => 'The following shortcuts are available in the editor:',
168     'windows_linux' => '(Windows/Linux)',
169     'mac' => '(Mac)',
170     'description' => 'Description',
171 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.