Files
dokuwiki-plugin-prosemirror/lang/en/lang.php
Anna Dabrowska abb3a0e47c More accurate icons and labels in media wizard
Labels and icons suggested that only image links were possible. Now it should be clear that file links are possible as well.
2020-07-21 21:04:36 +02:00

106 lines
4.4 KiB
PHP

<?php
/**
* English language file for prosemirror plugin
*
* @author Andreas Gohr <gohr@cosmocode.de>
*/
// custom language strings for the plugin
$lang['switch_editors'] = 'Toggle WYSIWYG editor';
$lang['link target'] = 'Link target';
$lang['type:wiki page'] = 'A page in this wiki';
$lang['type:interwiki'] = 'An interwiki link';
$lang['type:email'] = 'An email address';
$lang['type:external'] = 'An link to an external page';
$lang['type:other'] = 'Other';
$lang['type:automatic title'] = 'Automatic title';
$lang['type:custom title'] = 'Custom title';
$lang['type:image'] = 'Use an image as title';
$lang['placeholder:link name'] = '(automatic)';
$lang['legend:media'] = 'Media or file';
$lang['legend:alignment'] = 'Alignment';
$lang['legend:linking'] = 'Linking';
$lang['legend:caching'] = 'Caching';
$lang['media target'] = 'Image or document file';
$lang['label:caption'] = 'Caption / link text';
$lang['label:width'] = 'Width (px)';
$lang['label:height'] = 'Height (px)';
$lang['label:default alignment'] = 'Default';
$lang['label:float left'] = 'Left';
$lang['label:center alignment'] = 'Center';
$lang['label:float right'] = 'Right';
$lang['label:default linking'] = 'Default';
$lang['label:direct linking'] = 'Direct';
$lang['label:nolink'] = 'No link';
$lang['label:linkonly'] = 'Link only';
$lang['label:default caching'] = 'Default';
$lang['label:recache'] = 'Recache';
$lang['label:nocache'] = 'Nocache';
$lang['cancel'] = 'Cancel';
$lang['js']['cancel'] = $lang['cancel'];
$lang['js']['linkConfig'] = 'Link Configuration';
$lang['js']['mediaConfig'] = 'Image Configuration';
$lang['js']['rssConfig'] = 'RSS-Feed Configuration';
$lang['js']['footnoteViewTitle'] = 'Edit footnote';
$lang['js']['placeholder:page'] = 'namespace:page';
$lang['js']['label:blockquote'] = 'Blockquote';
$lang['js']['label:bulletList'] = 'Wrap in bullet list';
$lang['js']['label:code'] = 'Code Block';
$lang['js']['label:footnote'] = 'Add a footnote';
$lang['js']['label:headings'] = 'Headings';
$lang['js']['label:heading'] = 'Heading %s';
$lang['js']['label:image'] = 'Insert image or file';
$lang['js']['label:liftLI'] = 'Lift list item';
$lang['js']['label:link'] = 'Insert Link';
$lang['js']['label:orderedList'] = 'Wrap in ordered list';
$lang['js']['label:paragraph'] = 'Paragraph';
$lang['js']['label:pluginBlock'] = 'Plugin block';
$lang['js']['label:rss'] = 'Add new RSS feed';
$lang['js']['label:smileys'] = 'Smileys';
$lang['js']['label:settings'] = 'Page Settings';
$lang['js']['label:nocache'] = 'Deactivate Cache';
$lang['js']['label:notoc'] = 'Hide Table of Contents';
$lang['js']['label:table'] = 'Add new 2x2 table';
$lang['js']['label:table-ops'] = 'Edit table';
$lang['js']['label:table-add-row-before'] = 'Add row before';
$lang['js']['label:table-add-row-after'] = 'Add row after';
$lang['js']['label:table-row-delete'] = 'Delete row';
$lang['js']['label:table-add-column-before'] = 'Add column before';
$lang['js']['label:table-add-column-after'] = 'Add column after';
$lang['js']['label:table-column-delete'] = 'Delete column';
$lang['js']['label:table-cell-header-toggle'] = 'Toggle header state';
$lang['js']['label:table-cell-merge'] = 'Merge cells';
$lang['js']['label:table-cell-split'] = 'Split cells';
$lang['js']['label:table-cell-align-left'] = 'Align left';
$lang['js']['label:table-cell-align-center'] = 'Align center';
$lang['js']['label:table-cell-align-right'] = 'Align right';
$lang['js']['label:table-delete'] = 'Delete table';
$lang['js']['label:sinkListItem'] = 'Sink list item';
$lang['js']['label:marks'] = 'Formatting';
$lang['js']['label:strong'] = 'strong';
$lang['js']['label:em'] = 'italic';
$lang['js']['label:underline'] = 'underline';
$lang['js']['label:superscript'] = 'superscript';
$lang['js']['label:subscript'] = 'subscript';
$lang['js']['label:deleted'] = 'strike through';
$lang['js']['label:monospaced'] = 'monospaced';
$lang['js']['label:undo'] = 'undo';
$lang['js']['label:redo'] = 'redo';
$lang['js']['label:rss url'] = 'URL of the RSS feed';
$lang['js']['label:rss nOfItems'] = 'Maximum number of items to show';
$lang['js']['label:rss reverse'] = 'Display the last items in the feed first';
$lang['js']['label:rss author'] = 'Show item authors names';
$lang['js']['label:rss date'] = 'Show item dates';
$lang['js']['label:rss details'] = 'Show the item description';
$lang['js']['label:rss refresh'] = 'Refresh period';
$lang['js']['code_block_hint'] = '💡 Press CTRL+Enter to exit';