1<?php 2/** 3 * english language file for cli plugin 4 * 5 * @author Schplurtz le Déboulonné <Schplurtz@laposte.net> 6 */ 7 8// keys need to match the config setting name 9$lang['prompt'] ='Regexp (delimited by / | = , ; % or @) or string that describes the main prompt of the CLI. default is ‘/^.{0,30}?[$%>#] /’. It matches the shortest text within 30 chars from the begining of line that ends in $, %, >, # followed by a space. It works well for a majority of cli, including shells.<br />If your prompt and your secondary prompt both end in ‘> ’ you will have to make this regexp or the regexp for the secondary prompt more specific as this regexp will match both prompts'; 10$lang['continue'] ='Regexp (delimited by / | = , ; % or @) or string that describe the CLI secondary prompt. Default value is ‘/^.{0,30}?> /’. It matches the shortest text not longer than 30 chars that ends in ‘> ’.'; 11$lang['comment'] ='Comment regexp or string. Default is ‘/(^#)| #/’. It matches a # at the begining of line or a space followed by a sharp sign.'; 12$lang['namedprompt']='named prompt list, one per line, using this format : "name:regexp or string"<br />Name may then be used as shortcut in wiki pages this way <br /><tt><cli t=name></tt><br />It is quite shorter than <br /><tt><cli prompt="blabla" continue="blibli" comment="zap"></tt>'; 13$lang['namedcontinue']='named secondary prompt list, one per line, using this format : "name:regexp or string"'; 14$lang['namedcomment']='named comment list, one per line, using this format : "name:regexp or string"'; 15$lang['odtbackground'] = 'When exporting pages to ODT or PDF format with the <a href="https://www.dokuwiki.org/plugin:odt">odt</a> plugin, background color of the <tt><cli></tt> blocks. The default value <tt>#f7f9fa</tt> is the same as the one used by the <tt><code></tt> blocs.'; 16$lang['odtborderwidth'] = 'When exporting pages to ODT or PDF format with the <a href="https://www.dokuwiki.org/plugin:odt">odt</a> plugin, width in a CSS <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/length">unit length</a>, usually point «pt», of the border of the <tt><cli></tt> blocs. Default value : 0.06pt'; 17$lang['odtbordercolor'] = 'When exporting pages to ODT or PDF format with the <a href="https://www.dokuwiki.org/plugin:odt">odt</a> plugin, bordercolor of the <tt><cli></tt> blocs. Default is #8cacbb'; 18$lang['debug'] = 'When on, the recognised <cli> parameters are printed as message when saving or previewing and edited page.<br>This is mainly used by the dev, but may help you too on occasion.'; 19 20//Setup VIM: ex: et ts=4 : 21