PageRenderTime 41ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/Console/Console.props

#
MSBuild | 480 lines | 416 code | 64 blank | 0 comment | 9 complexity | e7131dd2d4002ba18c95724e197d801f MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. ### Plugin properties
  2. # We provide a custom action set, so we must be activated at startup
  3. plugin.console.ConsolePlugin.activate=startup
  4. plugin.console.ConsolePlugin.name=Console
  5. plugin.console.ConsolePlugin.version=4.5
  6. # new jEdit 4.3 plugin API for short description.
  7. plugin.console.ConsolePlugin.description=A command line shell and plugin interface for adding other custom shells.
  8. # points to a file relative to the root of the jar
  9. plugin.console.ConsolePlugin.longdescription=description.html
  10. plugin.console.ConsolePlugin.docs=index.html
  11. plugin.console.ConsolePlugin.author=Slava Pestov, Alan Ezust
  12. plugin.console.ConsolePlugin.depend.0=jedit 04.05.99.00
  13. plugin.console.ConsolePlugin.depend.1=jdk 1.6
  14. plugin.console.ConsolePlugin.depend.2=plugin errorlist.ErrorListPlugin 1.9
  15. plugin.console.ConsolePlugin.depend.3=optional plugin projectviewer.ProjectPlugin 3.4.1
  16. # Menu
  17. plugin.console.ConsolePlugin.menu=console run-last-console-command - \
  18. commando - commando-compile commando-run console-clear - \
  19. browse-commando-directory rescan-commands -
  20. #chdir-pv-selected chdir-pv-root -
  21. plugin.console.ConsolePlugin.menu.code=new console.ConsoleMenuProvider();
  22. console.label=Console
  23. run-last-console-command.label=Run Last Command
  24. commando.label=Commando...
  25. commando-compile.label=Compile Current Buffer...
  26. commando-run.label=Run Current Buffer...
  27. chdir-pv-selected.label=CD to Selected Node
  28. chdir-pv-root.label=CD to Root
  29. project-compile.label=Compile Project
  30. project-run.label=Run Project
  31. browse-commando-directory.label=Browse Commando Directory
  32. rescan-commands.label=Regen dynamic menus
  33. console-clear.label=Clear console
  34. action-set.commando.label=Plugin: Console Commandos
  35. ### Console component
  36. console.title=Console
  37. console.run=Run
  38. console.to-buffer=yourCommand > untitledjEditBuffer [Ctrl-Enter]
  39. console.stop=Stop
  40. console.clear=Clear
  41. console.font=Monospaced
  42. console.fontsize=12
  43. console.fontstyle=0
  44. console.encoding=ASCII
  45. console.bgColor=#ffffff
  46. console.plainColor=#000000
  47. console.caretColor=#000000
  48. console.infoColor=#009600
  49. console.warningColor=#ffa800
  50. console.errorColor=#ff0000
  51. console.completions=/-- Possible completions:
  52. console.completions-end=\\-- End of completions.
  53. console.prompt={0} ready.
  54. ### Console option panes
  55. plugin.console.ConsolePlugin.option-group= console.general \
  56. console.system \
  57. console.toolbar \
  58. console.errors \
  59. console.compile-run
  60. options.console.general.label=General
  61. options.console.general.code=new console.options.GeneralOptionPane();
  62. options.console.system.label=System Shell
  63. options.console.system.code=new console.options.SystemOptionPane();
  64. options.console.general.commando.toolbar=ToolBar enabled
  65. options.console.general.rememberCWD=Remember current working directory
  66. options.console.toolbar.buttons=Commando Buttons
  67. options.console.general.shellprefix=Shell Prefix:
  68. options.console.general.shellprefix.tooltip=(Experimental) - you can execute commands inside alternate shells with this option.
  69. options.console.general.font=Font:
  70. options.console.general.encoding=Character encoding:
  71. options.console.general.charlimit=Maximum scrollback buffer size (characters):
  72. options.console.general.historylimit=Maximum number of commands to remember:
  73. options.console.general.bgColor.tooltip=Ignored if jEdit's Global Apperance option: "Use TextArea colors in all components" is checked.
  74. options.console.general.bgColor=Console background:
  75. options.console.general.plainColor=Plain text:
  76. options.console.general.caretColor=Caret:
  77. options.console.general.warningColor=Warning messages:
  78. options.console.general.errorColor=Error messages:
  79. options.console.system.clearBeforeExecute=Clear scrollback buffer before commando, build, or run project
  80. options.console.general.infoColor=Information messages:
  81. options.console.general.changedir=Tree selection options:
  82. options.last-selected=Last Selected
  83. options.console.general.changedir.nodeselect=On VFS node select, cd to node dir
  84. options.console.general.changedir.pvchange=On Project change, cd to project root dir
  85. # options.console.general.changedir.pvselect=On ProjectViewer select node, cd to node dir
  86. options.console.general.mergeError=Merge stdout and stderr
  87. options.console.general.welcome=Show welcome message
  88. options.console.general.showExitStatus=Show exit status
  89. options.console.general.mergeError.tooltip=for merging 'make Entering/Leaving <path>' stdout with stderr \
  90. stream - helps ErrorList get correct path information for multi-dir Makefiles
  91. options.console.general.pathdirs=Subshell extra PATH:
  92. options.console.general.pathdirs.tooltip=OS-dependent PATH string to be (pre|a)pended to subshells
  93. options.console.general.pathdirs.append=Append extra dirs to path
  94. options.console.toolbar.label=Toolbar Options
  95. options.console.toolbar.code = new console.options.ToolBarOptionPane();
  96. options.console.toolbarcaption=Toolbar Options:
  97. options.console.errors.label=Error Patterns
  98. options.console.errors.code=new console.options.ErrorsOptionPane();
  99. options.console.errors.caption=Error patterns:
  100. options.console.errors.edit=Edit
  101. options.console.errors.apply=Test/Commit
  102. options.console.errors.apply.tooltip=Test Regex and Commit changes if regex parses.
  103. options.console.errors.info=NOTE: Test/Commit each change to test the regex. \n\
  104. Otherwise, your changes are lost when you click "ok/apply".
  105. options.console.errors.reload=Reload
  106. options.console.errors.reload.tooltip=restore values from properties
  107. options.console.errors.checking.title=Checking Regular Expression
  108. options.console.errors.checking.message={0}
  109. options.console.errors.testarea.label=Test Area
  110. options.console.errors.testarea=controller.cpp: In constructor `Controller::Controller(int, char**)': \n\
  111. controller.cpp:33: error: syntax error before `=' token \n\
  112. controller.cpp: In member function `QMenu* \n\ Controller::fileMenu(QWidget*)': \n\
  113. controller.cpp:132: warning: unused parameter `QWidget*parent' \n\
  114. make: *** [.obj/controller.o] Error 1 \n
  115. options.console.errors.title=Edit Error Pattern
  116. options.console.errors.name=Name:
  117. options.console.errors.match=Error Regexp:
  118. options.console.errors.warning=Warning regexp:
  119. options.console.errors.extra=Extra lines regexp:
  120. options.console.errors.filename=Filename:
  121. options.console.errors.line=Line number:
  122. options.console.errors.message=Error message:
  123. options.console.general.defaultshell=Default Shell:
  124. console.not-filled-out.title=Fields not filled out
  125. console.not-filled-out.message=You must fill out all fields in this dialog box.
  126. options.console.compile-run.label=Compile & Run
  127. options.console.compile-run.code=new console.options.CompileRunOptionPane();
  128. options.console.compile-run.caption=Compilers and interpreters:
  129. options.console.compile-run.mode=Mode
  130. options.console.compile-run.compiler=Compiler
  131. options.console.compile-run.interpreter=Interpreter
  132. # Because this uses a JLabel, the HTML formatting is necessary
  133. options.console.compile-run.help=<HTML>Useful environment variables:<BLOCKQUOTE> \
  134. $f - full path of the current buffer<BR /> \
  135. $d - parent directory of the current buffer<BR /> \
  136. $n - name of the current buffer</BLOCKQUOTE> \
  137. Read the Console plugin documentation for a full list of available \
  138. environment variables.</HTML>
  139. options.pv.commands.label=Console
  140. options.pv.commands.help=You can run these commands from Plugins->Console->Project.
  141. options.pv.commands.compile=Compile Project:
  142. options.pv.commands.run=Run Project:
  143. ### SystemShell
  144. console.shell.info.toggle=true
  145. console.shell.info=This shell runs operating system processes.\n\
  146. \n\
  147. Press %<TAB> to list built-in commands.\n\
  148. Run built-in with --help argument to get a brief usage message.\n\
  149. Run %help to view Console plugin online help.\n\
  150. \n\
  151. Errors generated by compilers and some other programs are listed\n\
  152. for easy one-click access in the 'Plugins->Error List->Error List'\n\
  153. window.
  154. console.shell.prompt={0}>
  155. console.shell.prefix.cmd=cmd /c
  156. console.shell.prefix.command=command /c
  157. console.shell.prefix.bash=bash -c
  158. console.shell.prefix.tcsh=csh -c
  159. console.shell.unknown-builtin=Built-in {0} not recognized.\n\
  160. Press %<TAB> to list built-in commands.
  161. console.shell.bad-opt-long=Unknown option --{0}. Try invoking with the --help parameter.
  162. console.shell.need-arg-long=Option --{0} requires an argument.
  163. console.shell.no-arg-long=Cannot have --no- prefix on option --{0}.
  164. console.shell.bad-opt=Unknown option -{0}. Try invoking with the --help parameter.
  165. console.shell.bad-args=Incorrect number of arguments. Try invoking with the --help \
  166. parameter.
  167. console.shell.bad-regex=Bad {0} in error pattern {1}. Check Plugin Options-Console-Error Patterns
  168. console.shell.noproc=No process is currently running
  169. console.shell.not-found-win=Command not found: {0}
  170. console.shell.killed=Process {0} killed
  171. console.shell.detached=Process {0} detached
  172. console.shell.alias.usage=Usage: %alias <alias> <command>\n\
  173. Makes <alias> do the same thing as <command>.\n\
  174. Aliases are not persistent.
  175. console.shell.aliases.usage=Usage: %aliases\n\
  176. Lists all defined aliases.\n\
  177. Aliases are not persistent.
  178. console.shell.browse.usage=Usage: %browse [-n|--new-window] [<directory>]\n\
  179. Opens specified directory in file system browser.\n\
  180. If a directory is not specified, current directory is assumed.
  181. console.shell.cd.usage=Usage: %cd [<directory>]\n\
  182. Sets working directory.
  183. console.shell.cd.error=The directory {0} does not exist
  184. console.shell.cd.file={0} is not a directory.
  185. console.shell.clear.usage=Usage: %clear\n\
  186. Clears output area.
  187. console.shell.detach.usage=Usage: %detach\n\
  188. Detaches the currently running process and runs it in the background.
  189. console.shell.dirstack.usage=Usage: %dirstack\n\
  190. Prints the directory stack used by %pushd and %popd.
  191. console.shell.echo.usage=Usage: %echo <arguments> ...\n\
  192. Prints arguments in console.
  193. console.shell.env.usage=Usage: %env\n\
  194. Prints all environment variables in console.
  195. console.shell.edit.usage=Usage: %edit <files> ...\n\
  196. Opens all specified files.
  197. console.shell.help.usage=Usage: %help [<command|URL>]\n\
  198. If a built-in is specified, shows usage message.\n\
  199. If a URL is specified, opens URL in the help viewer.\n\
  200. If no arguments specified, opens console documentation in the help viewer.
  201. console.shell.kill.usage=Usage: %kill\n\
  202. Stops the currently running process.
  203. console.shell.popd.usage=Usage: %popd\n\
  204. Goes to the directory at the top of the directory stack.
  205. console.shell.popd.error=Directory stack is empty.
  206. console.shell.pushd.usage=Usage: %pushd\n\
  207. Pushes current directory on to directory stack.
  208. console.shell.pushd.ok=Directory {0} pushed; use %popd to return.
  209. console.shell.pwd.usage=Usage: %pwd\n\
  210. Prints current working directory.
  211. console.shell.run.usage=Usage: %run <scripts>...\n\
  212. Runs specified script.\n\
  213. You can run BeanShell scripts, or any script \
  214. type supported by an installed plugin (for example you can run Python scripts \
  215. if JythonInterpreter is installed).
  216. console.shell.set.usage=Usage: %set <variable> <value>\n\
  217. Sets value of environment variable <variable> to <value>.
  218. console.shell.unalias.usage=Usage: %unalias <alias>\n\
  219. Removes the specified alias.\n\
  220. Aliases are not persistent.
  221. console.shell.unset.usage=Usage: %unset <variable>\n\
  222. Clears value of environment variable <variable>.
  223. console.shell.version.usage=Usage: %version\n\
  224. Prints console plugin version.
  225. console.shell.error=Error while running process: {0}
  226. console.shell.error.working-dir=Current working directory does not exist: {0}\n\
  227. Use "cd" to change directories first.
  228. console.shell.exited=Process {0} exited with code {1}
  229. ### BeanShell
  230. console.beanshell.info=This shell evaluates commands in jEdit's BeanShell \
  231. interpreter. For example, try evaluating "2+2".\n\
  232. \n\
  233. In addition to the variables set by jEdit (view, editPane, textArea, \
  234. buffer), the current console instance is stored in the variable \
  235. named "console".\n
  236. console.beanshell.prompt=BeanShell>
  237. ### Error parsing
  238. console.errors.default=generic perl ant python vhdl msvc q_assert msnet jade antemacs emacs
  239. console.error.make.entering=Entering directory `(.+)'
  240. console.error.make.leaving=Leaving directory `(.+)'
  241. console.error.vhdl.name=VHDL
  242. console.error.vhdl.match=(^:+):.(.+)\\.vhd\\((\\d+)\\):(.+)
  243. console.error.vhdl.filename=$2.vhd
  244. console.error.vhdl.line=$3
  245. console.error.vhdl.message=$4
  246. console.error.msvc.name=Microsoft Visual C++
  247. console.error.msvc.filename=$1
  248. console.error.msvc.line=$2
  249. console.error.msvc.message=$4
  250. console.error.msvc.match=([^\\(]*)[\\(](\\d+)[)].:.([^:]*):\\s*(.*)
  251. console.error.msvc.warning=([^\\(]*)[\\(](\\d+)[)].:.(warning[^:]*):\\s*(.+)
  252. console.error.msvc.extra=\\s+(.*)
  253. console.error.msnet.name=Microsoft.Net
  254. console.error.msnet.filename=$1
  255. console.error.msnet.line=$2
  256. console.error.msnet.message=$4
  257. console.error.msnet.match=^(.+)\\((\\d+),(\\d+)\\)\\:\\s+(.+)$
  258. console.error.q_assert.message=$1
  259. console.error.q_assert.match=ASSERT\: "(.+)" in file ([^,]+), line (\\d+)
  260. console.error.q_assert.warning=
  261. console.error.q_assert.extra=
  262. console.error.q_assert.line=$3
  263. console.error.q_assert.filename=$2
  264. console.error.q_assert.name=Q_ASSERT
  265. console.error.q_assert.testtext=ASSERT\: "fn.toString() \=\= QString("t.mp3")" in file CPPPyWrapperExample.cpp, line 32
  266. console.error.perl.name=Perl
  267. console.error.perl.extra=\\s\\s(.*)
  268. console.error.perl.match=(.+) at ([^<>]+) line (\\d+)(\\.?|, (.+))
  269. console.error.perl.message=$1 $4
  270. console.error.perl.filename=$2
  271. console.error.perl.line=$3
  272. console.error.perl.testtext=
  273. console.error.jade.name=Jade
  274. console.error.jade.match=(.*?)jade:(.+?):(\\d+?):\\d+(.+)
  275. console.error.jade.filename=$2
  276. console.error.jade.line=$3
  277. console.error.jade.message=$4
  278. console.error.antemacs.name=Ant Emacs
  279. console.error.antemacs.match=\\s*\\[.+\\]\\s+(.+):(\\d+):\\d+:\\d+:\\d+:(.+)
  280. console.error.antemacs.warning=\\s*\\[.+\\]\\s+(.+):(\\d+):\\d+:\\d+:\\d+: \
  281. (?:Warning|warning|Caution|caution):\\s*(.+)
  282. console.error.antemacs.filename=$1
  283. console.error.antemacs.line=$2
  284. console.error.antemacs.message=$3
  285. console.error.ant.name=Ant
  286. console.error.ant.match=\\s*\\[.+\\]\\s+(.+?):(\\d+):(.+)
  287. console.error.ant.warning=\\s*\\[.+\\]\\s+(.+?):(\\d+):(.+)\
  288. (?:Warning|warning|Caution|caution):\\s(.+)
  289. console.error.ant.extra=\\s*\\[javac\\]\\s*((?:symbol|location|found|required)\\s*:.*)
  290. console.error.ant.filename=$1
  291. console.error.ant.line=$2
  292. console.error.ant.message=$3
  293. console.error.emacs.name=Emacs
  294. console.error.emacs.match=(.+):(\\d+):\\d+:\\d+:\\d+:(.+)
  295. console.error.emacs.warning=(.+):(\\d+):\\d+:\\d+:\\d+: \
  296. (?:Warning|warning|Caution|caution):\\s*(.+)
  297. console.error.emacs.filename=$1
  298. console.error.emacs.line=$2
  299. console.error.emacs.message=$3
  300. console.error.python.name=Python
  301. console.error.python.filename=$1
  302. console.error.python.line=$2
  303. console.error.python.message=$3
  304. console.error.python.match=\\s+File "([^"]+)", line (\\d+)\\s*(.*)
  305. console.error.python.extra=((\\w*Error\:|\\s{4})(.*))
  306. console.error.python.testtext=Traceback (most recent call last)\:\n File "slackerxp.py", line 541, in ?\n titleNode \= doc.title\nAttributeError\: 'TagWrapper' object has no attribute 'title'\n\n\n\n\n\n
  307. console.error.python.warning=
  308. console.error.generic.name=Generic
  309. console.error.generic.match=((?\:\\w\:)?[^\:]+?)\:(\\d+)\:\\s*(.+)
  310. console.error.generic.warning=((?\:\\w\:)?[^\:]+?)\:(\\d+)\:\\s*warning\:\\s*(.+)
  311. console.error.generic.extra=(\\s+(.*)|\\S+\\s*\:.*)
  312. console.error.generic.filename=$1
  313. console.error.generic.line=$2
  314. console.error.generic.message=$3
  315. ### Commando
  316. commando.default=ant \
  317. execute \
  318. gcc \
  319. groovy \
  320. java \
  321. javac \
  322. javacc \
  323. latex \
  324. make \
  325. perl \
  326. python \
  327. diff \
  328. qmake \
  329. yap \
  330. jmk \
  331. hugs \
  332. jikes \
  333. openjade_HTML \
  334. openjade_PDF
  335. commando.toolbar.enabled=false
  336. commando.title=Commando
  337. commando.caption=Command:
  338. commando.settings=Settings
  339. commando.commands=Commands
  340. commando.copy=Copy
  341. commando.hide=Hide
  342. commando.customize=Customize
  343. commando.uncustomize=Un-Customize
  344. commando.xml-error.title=Parse Error
  345. commando.xml-error.message=An error occurred while parsing {0} at line {1}\n\
  346. ({2}).
  347. console.commando.button.tooltiptext=Right-click for menu
  348. console.commando.button.customized.tooltiptext=User-customized commando button
  349. commando.uncustomize.tooltiptext=Remove custom {0}.xml from settings directory
  350. commando.bad-shell.title=Unknown Shell
  351. commando.bad-shell.message=No such shell: {0}
  352. commando.exit-status.title=Command Failed
  353. commando.exit-status.message=Execution of the following command failed:\n\
  354. {0}\n\
  355. \n\
  356. Move on to next command?
  357. commando.confirm.title=Confirmation Required
  358. commando.confirm.message=Do you want to run the following command?\n\
  359. {0}
  360. commando.no-compiler.title=No Compiler Defined
  361. commando.no-compiler.message=There is no compiler associated with this buffer.\n\
  362. You can specify compilers on a mode-specific basis in the\n\
  363. Plugin Options -> Console -> Compile and Run option pane.
  364. {0}
  365. commando.not-saved-compile.title=Save Changes
  366. commando.not-saved-compile.message=Save changes to {0} before compiling?
  367. commando.no-interpreter.title=No Interpreter Defined
  368. commando.no-interpreter.message=There is no interpreter associated with this buffer.\n\
  369. You can specify interpreters on a mode-specific basis in the\n\
  370. Utilities->Global Options dialog box.
  371. commando.not-saved-run.title=Save Changes
  372. commando.not-saved-run.message=Save changes to {0} before running?
  373. commando.no-command.title=Unknown Commando Panel
  374. commando.no-command.message=Unknown commando: {0}
  375. ### Default compilers and interpreters
  376. mode.batch.commando.run=execute
  377. mode.java.commando.compile=javac
  378. mode.java.commando.run=java
  379. mode.jmk.commando.compile=jmk
  380. mode.jmk.commando.run=jmk
  381. mode.tex.commando.compile=latex
  382. mode.latex.commando.compile=latex
  383. mode.tex.commando.run=yap
  384. mode.javacc.commando.compile=javacc
  385. mode.c.commando.compile=gcc
  386. mode.c.commando.run=execute
  387. mode.c++.commando.compile=make
  388. mode.c++.commando.run=execute
  389. mode.python.commando.compile=python
  390. mode.perl.commando.compile=perl
  391. mode.shellscript.commando.run=execute
  392. mode.makefile.commando.compile=make
  393. # Project compilation
  394. console.pv.not-installed.title=ProjectViewer not installed
  395. console.pv.not-installed.message=This action requires the ProjectViewer plugin. \
  396. Please install it and try again.
  397. console.pv.no-active-project.title=No Active Project
  398. console.pv.no-active-project.message=Select a project in the ProjectViewer \
  399. dockable and try again.
  400. console.pv.no-command.title=Command not found
  401. console.pv.no-command.message=No {0} command has been defined.\n\
  402. Would you like to define it now?