/plugins/XML/tags/release-0-5/XML.props

# · MSBuild · 176 lines · 147 code · 29 blank · 0 comment · 0 complexity · 28fed744720f535270d29971fdcb1b71 MD5 · raw file

  1. # Plugin properties
  2. plugin.xml.XmlPlugin.name=XML
  3. plugin.xml.XmlPlugin.author=Slava Pestov, Andre Kaplan, David Walend, Ollie Rutherfurd, Scott Wyatt
  4. plugin.xml.XmlPlugin.version=0.5
  5. plugin.xml.XmlPlugin.docs=index.html
  6. plugin.xml.XmlPlugin.jars=xerces.jar
  7. plugin.xml.XmlPlugin.depend.0=jedit 03.02.99.01
  8. plugin.xml.XmlPlugin.depend.1=plugin EditBusPlugin 1.0.1
  9. plugin.xml.XmlPlugin.depend.2=plugin ErrorListPlugin 1.1
  10. # Modes where xml parsing can theoretically to be performed
  11. # If a file doesn't have one of these modes, attempting to parse will
  12. # show an error
  13. mode.xml.xml.parse=true
  14. mode.xsl.xml.parse=true
  15. # Global parse on buffer change switch
  16. buffer.xml.buffer-change-parse=true
  17. # Global parse on keystroke switch
  18. buffer.xml.keystroke-parse=false
  19. # Delay after typing ends before auto parse, in milliseconds
  20. xml.auto-parse-delay=1500
  21. # Show attributes in XML tree?
  22. xml.show-attributes=false
  23. # DTD validation
  24. xml.validate=true
  25. # Enable tag completion
  26. xml.complete=true
  27. # Delay after & or < before showing completion popup
  28. xml.complete-delay=500
  29. # Insert closing tag automatically after '</' typed
  30. xml.close-complete=true
  31. # Insert closing tag automatically after '>' typed
  32. xml.close-complete-open=false
  33. # Tag highlight
  34. xml.tag-highlight=true
  35. xml.tag-highlight-color=black
  36. mode.asp.xml.tag-highlight=true
  37. mode.coldfusion.xml.tag-highlight=true
  38. mode.html.xml.tag-highlight=true
  39. mode.jhtml.xml.tag-highlight=true
  40. mode.jsp.xml.tag-highlight=true
  41. mode.php.xml.tag-highlight=true
  42. mode.shtml.xml.tag-highlight=true
  43. mode.sgml.xml.tag-highlight=true
  44. mode.xml.xml.tag-highlight=true
  45. mode.xsl.xml.tag-highlight=true
  46. mode.velocity.xml.tag-highlight=true
  47. # Completion info
  48. # 'ant' is not a real mode name. There is a hard-coded hack in
  49. # CompletionInfo.java to handle it
  50. mode.ant.xml.completion-info=jeditresource:/XML.jar!/xml/ant-complete.xml
  51. mode.asp.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  52. mode.coldfusion.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  53. mode.html.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  54. mode.jhtml.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  55. mode.jsp.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  56. mode.php.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  57. mode.shtml.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  58. mode.xsl.xml.completion-info=jeditresource:/XML.jar!/xml/xsl-complete.xml
  59. mode.velocity.xml.completion-info=jeditresource:/XML.jar!/xml/html-complete.xml
  60. # Menu bar stuff
  61. xml-menu=\
  62. xml-tree \
  63. - \
  64. xml-parse \
  65. xml-keystroke-parse \
  66. - \
  67. xml-insert \
  68. xml-edit-tag \
  69. - \
  70. xml-close-tag \
  71. xml-prev-tag \
  72. xml-next-tag \
  73. xml-remove-tags \
  74. - \
  75. xml-chars-to-entities \
  76. xml-entities-to-chars
  77. xml-menu.label=XML
  78. xml-tree.label=XML Tree
  79. xml-parse.label=Parse XML Buffer
  80. xml-keystroke-parse.label=Parse XML on Keystroke
  81. xml-insert.label=XML Insert
  82. xml-edit-tag.label=Edit Tag at Caret...
  83. xml-close-tag.label=Close Last Open Tag
  84. xml-prev-tag.label=Go to Previous Tag
  85. xml-next-tag.label=Go to Next Tag
  86. xml-remove-tags.label=Remove All Tags
  87. xml-chars-to-entities.label=Characters to Entities
  88. xml-entities-to-chars.label=Entities to Characters
  89. # Tag completion
  90. -xml-complete-closing-tag.shortcut=/
  91. -xml-complete-entity.shortcut=&
  92. -xml-complete-tag.shortcut=<
  93. -xml-insert-closing-tag.shortcut=>
  94. # XML tree window
  95. xml-tree.title=XML Tree
  96. xml-tree.parse=Parse
  97. xml-tree.parsing=Parsing
  98. xml-tree.not-xml-file=Not an XML file
  99. xml-tree.not-parsed=Not parsed
  100. xml-tree.parsing-complete=XML parsing complete, {0} error(s)
  101. # Insert tag window
  102. xml-insert.title=XML Insert
  103. xml-insert.elements=Elements:
  104. xml-insert.entities=Entities:
  105. xml-insert.not-parsed=Not parsed
  106. # Edit tag dialog box
  107. xml-no-data.title=Element and entity data not available
  108. xml-no-data.message=This command can only be used if you are editing an\n\
  109. HTML or XML file.\n\
  110. \n\
  111. For XML files, the "XML Tree" window should also be opened, and the\n\
  112. XML file must specify a DTD or schema.
  113. xml-edit-tag.undefined-element.title=Element Not Defined
  114. xml-edit-tag.undefined-element.message=The element "<{0}>" is not defined.
  115. xml-edit-tag.title=Edit Tag
  116. xml-edit-tag.element-name=Element name:
  117. xml-edit-tag.empty=Empty
  118. xml-edit-tag.set=Set
  119. xml-edit-tag.attribute=Attribute
  120. xml-edit-tag.type=Type
  121. xml-edit-tag.value=Value
  122. xml-edit-tag.preview=Preview:
  123. xml-edit-tag.required=#REQUIRED
  124. # Status message shown when doing element completion
  125. xml-complete-status=Space: insert; Enter: edit tag
  126. # Option pane
  127. options.xml.label=XML
  128. options.xml.general.label=General
  129. options.xml.general.buffer-change-parse=Parse on buffer switch and save
  130. options.xml.general.keystroke-parse=Parse on keystroke
  131. options.xml.general.auto-parse-delay=After last keystroke, wait (seconds):
  132. options.xml.general.show-attributes=Show tag attributes in tree
  133. options.xml.general.validate=Validate if DTD or schema available
  134. options.xml.general.modes=Enable XML parsing for the following edit modes:
  135. options.xml.complete.label=Completion
  136. options.xml.complete.complete=Tag and entity completion
  137. options.xml.complete.complete-delay=After < or &, wait (seconds):
  138. options.xml.complete.close-complete=Insert closing tag when "</" typed
  139. options.xml.complete.close-complete-open=Insert closing tag when opening tag typed
  140. options.xml.tag-highlight.label=Tag Highlighting
  141. options.xml.tag-highlight.enabled=Highlight matching tags
  142. options.xml.tag-highlight.color=Tag highlight color:
  143. options.xml.tag-highlight.modes=Enabled tag highlighting for the following edit modes:
  144. options.xml.catalogs.label=Catalogs
  145. options.xml.catalogs.caption=Catalog files:
  146. options.xml.catalogs.add=Add
  147. options.xml.catalogs.remove=Remove