1 <?php
2 /**
3  * PyCode plugin: it embeds a Python script hosted in a remote repository.
4  *
5  * lang.php: here are defined all the strings used by the PyCode plugin in
6  *      the DokuWiki pages.
7  *
8  * @author Torpedo <dgtorpedo@gmail.com>
9  * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
10  * @package en_lang_strings
11  */
12 
13 $lang["note"] = "The code has changed since last time this page was edited.";
14 $lang["notfound-lns"] = "The lines of code you are trying to embed are out of range.";
15 $lang["notfound-def"] = "The function you are trying to embed doesn't exist.";
16 $lang["notfound-cls"] = "The class you are trying to embed doesn't exist.";
17 $lang["wrong-flag"] = "The flag is not correct.";
18 $lang["wrong-lang"] = "The file you are trying to embed isn't a Python script.";
19 $lang["error"] = "Failed to open the source code.
20 Please, check the path to your repo.";
21 $lang["pycode"] = "PyCode Plugin";
22 $lang["title"] = "New title";
23 
24 $lang["js"]["wizard"] = "PyCode Wizard";
25 $lang["js"]["repository"] = "Repository";
26 $lang["js"]["options"] = "Options";
27 $lang["js"]["embed"] = "Embed";
28 $lang["js"]["lns"] = "lines";
29 $lang["js"]["def"] = "function";
30 $lang["js"]["cls"] = "class";
31 $lang["js"]["nums"] = "Line numbers";
32 $lang["js"]["docstr"] = "Docstring";
33 $lang["js"]["show"] = "show";
34 $lang["js"]["hide"] = "hide";
35 $lang["js"]["title"] = "Title";
36 $lang["js"]["change"] = "change default";
37 $lang["js"]["insert"] = "Insert";
38