/plugins/OpenIt/branches/OpenItProjectViewer/src/OpenIt.props

# · MSBuild · 117 lines · 99 code · 18 blank · 0 comment · 0 complexity · 5ba59db5c64ba5a39c0dc64c4ea7d9fc MD5 · raw file

  1. # OpenIt jEdit Plugin
  2. # Author: Matt Etheridge
  3. # Maintainer: Denis Koryavov
  4. # general plugin information
  5. plugin.org.etheridge.openit.OpenItPlugin.name=OpenIt
  6. plugin.org.etheridge.openit.OpenItPlugin.author=Denis Koryavov, Matt Etheridge, Matthieu Casanova
  7. plugin.org.etheridge.openit.OpenItPlugin.version=1.6.0
  8. plugin.org.etheridge.openit.OpenItPlugin.docs=OpenIt.html
  9. plugin.org.etheridge.openit.OpenItPlugin.depend.0=jdk 1.5
  10. plugin.org.etheridge.openit.OpenItPlugin.depend.1=jedit 04.03.17.00
  11. plugin.org.etheridge.openit.OpenItPlugin.depend.2=optional plugin projectviewer.ProjectViewerPlugin 2.9.0.0
  12. plugin.org.etheridge.openit.OpenItPlugin.usePluginHome=true
  13. # action labels
  14. openit.find-file-in-source-path.label=Open File
  15. openit.add-current-buffer-directory-to-source-path.label=Add Directory of Current Buffer to SearchPath
  16. # menu structure and labels
  17. openit.menu=openit.find-file-in-source-path
  18. openit.menu.label=OpenIt
  19. #
  20. # GUI Windows
  21. #
  22. # FindFileWindow
  23. openit.FindFileWindow.Instruction.label=Enter file name:
  24. openit.FindFileWindow.InitialLoadingMessage.label=Loading File Index... (this will disappear when loaded)
  25. # Icons
  26. openit.FindFileWindow.ImagePropertyPrefix=openit.FindFileWindow.ImageFile.
  27. openit.FindFileWindow.ImagePropertyLookup.unknown=unknown
  28. openit.FindFileWindow.ImagePropertyLookup.other=other
  29. # NOTE: if you want to add some new file types and icons, add the file extension
  30. # to the following property, and then add a matching
  31. # openit.FindFileWindow.ImageFile.<extension name> line below, and specify
  32. # the icon you wish to use.
  33. openit.FindFileWindow.ImageFileTypes=java xml txt c cpp props properties html unknown other
  34. openit.FindFileWindow.ImageFile.java=/org/etheridge/openit/gui/images/java.gif
  35. openit.FindFileWindow.ImageFile.xml=/org/etheridge/openit/gui/images/xml.gif
  36. openit.FindFileWindow.ImageFile.txt=/org/etheridge/openit/gui/images/text.gif
  37. openit.FindFileWindow.ImageFile.props=/org/etheridge/openit/gui/images/props.gif
  38. openit.FindFileWindow.ImageFile.properties=/org/etheridge/openit/gui/images/props.gif
  39. openit.FindFileWindow.ImageFile.c=/org/etheridge/openit/gui/images/c.gif
  40. openit.FindFileWindow.ImageFile.cpp=/org/etheridge/openit/gui/images/c++.gif
  41. openit.FindFileWindow.ImageFile.html=/org/etheridge/openit/gui/images/html.gif
  42. openit.FindFileWindow.ImageFile.unknown=/org/etheridge/openit/gui/images/unknown.gif
  43. openit.FindFileWindow.ImageFile.other=/org/etheridge/openit/gui/images/other.gif
  44. # Filter Window
  45. openit.FilterWindow.FilterCheckbox.label=Filter (? = any character, * = any string)
  46. # openit options group name
  47. options.OpenIt.label=OpenIt
  48. # source path option pane
  49. options.OpenIt.SourcePathOptionPane.label=Search Path Options
  50. options.OpenIt.SourcePathOptionPane.SourcePath.title=Search Paths
  51. options.OpenIt.SourcePathOptionPane.SourcePath.instruction.label=Add/Remove Search Paths:
  52. options.OpenIt.SourcePathOptionPane.mGetRootFromProjectViewer.label=Import files from current project
  53. # options.OpenIt.SourcePathOptionPane.SourcePath.instruction2.label=(NOTE: these are usually the base directory(s) of your Java source files, but can be any directory!)
  54. options.OpenIt.SourcePathOptionPane.SourcePath.AddButton.label=Add Search Path(s)
  55. options.OpenIt.SourcePathOptionPane.SourcePath.RemoveButton.label=Remove Search Path(s)
  56. options.OpenIt.SourcePathOptionPane.SourcePath.SearchPathsFileFilter=Search Paths
  57. options.OpenIt.SourcePathOptionPane.ExcludeRegularExpression.title=Exclude Files Regular Expression Filter
  58. options.OpenIt.SourcePathOptionPane.ExcludeRegularExpression.label=Any matching FILES will be ignored: (eg. *.class|*.#*)
  59. options.OpenIt.SourcePathOptionPane.RefreshRate.title=Search Path Refresh Rate
  60. options.OpenIt.SourcePathOptionPane.RefreshRate.CheckBox.label=How often should the search path be refreshed? (in seconds):
  61. options.OpenIt.SourcePathOptionPane.ExcludeDirectoryRegularExpression.title=Exclude Directories Regular Expression Filter
  62. options.OpenIt.SourcePathOptionPane.ExcludeDirectoryRegularExpression.label=Any matching DIRECTORIES (and any sub-directories) will be ignored: (eg. *CVS|*org\\etheridge\\openit|C:\\source\\test)
  63. options.OpenIt.SourcePathOptionPane.IgnoreCase.label=Ignore Case
  64. # popups option pane
  65. options.OpenIt.PopupOptionsPane.SubstringMatching.title=Substring Matching
  66. options.OpenIt.PopupOptionsPane.SubstringMatching.instruction.label.1=With substring matching activated, any filename containing the entered substring will be displayed.
  67. options.OpenIt.PopupOptionsPane.SubstringMatching.instruction.label.2=(NOTE: substring matching may decrease performance slightly!)
  68. options.OpenIt.PopupOptionsPane.SubstringMatching.label=Allow substring matching (anywhere in filename)
  69. options.OpenIt.PopupOptionsPane.ClearPopup.title=Clear Popup
  70. options.OpenIt.PopupOptionsPane.label=Popup Window Options
  71. options.OpenIt.PopupOptionsPane.ClearPopup.ShouldClearPopup=Clear window on popup
  72. options.OpenIt.PopupOptionsPane.CaseSensitive.title=Case Sensitivity
  73. options.OpenIt.PopupOptionsPane.CaseSensitive.label=Case sensitive file name matching
  74. options.OpenIt.PopupOptionsPane.Display.title=List Display
  75. options.OpenIt.PopupOptionsPane.Display.DisplayExtensions=Display file extensions
  76. options.OpenIt.PopupOptionsPane.Display.DisplayDirectory=Display directory where file exists
  77. options.OpenIt.PopupOptionsPane.Display.DisplayIcons=Display file type icons
  78. options.OpenIt.PopupOptionsPane.Display.DisplaySize=Display file size
  79. options.OpenIt.PopupOptionsPane.JavaFileDisplay.DisplayPackages=Paths in Java style
  80. options.OpenIt.PopupOptionsPane.JavaFileDisplay.DisplayDirectory=Display directory where file exists
  81. #
  82. # General Messages
  83. #
  84. openit.InitialLoadingNotComplete.StatusBarMessage=Initial SearchPath not loaded yet, try again in a few seconds
  85. openit.AddedDirectoryToSourcePath.StatusBarMessage.1=Added
  86. openit.AddedDirectoryToSourcePath.StatusBarMessage.2=directory to the OpenIt search path successfully!
  87. #
  88. # jEdit 4.2 Properties
  89. #
  90. # whether the plugin should be activated at startup or defer till used
  91. plugin.org.etheridge.openit.OpenItPlugin.activate=defer
  92. # menu
  93. plugin.org.etheridge.openit.OpenItPlugin.menu=openit.find-file-in-source-path
  94. # option panels
  95. plugin.org.etheridge.openit.OpenItPlugin.option-group=sourcePathOptionsPane \ popupOptionsPane
  96. options.sourcePathOptionsPane.label=Search Path Options
  97. options.sourcePathOptionsPane.code=new org.etheridge.openit.options.SourcePathOptionsPane();
  98. options.popupOptionsPane.label=Popup Window Options
  99. options.popupOptionsPane.code=new org.etheridge.openit.options.PopupOptionsPane();