-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCscopeFinder.props
82 lines (73 loc) · 3.81 KB
/
CscopeFinder.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
plugin.cscopefinder.CscopeFinderPlugin.activate=startup
#{{{ Plugin information
plugin.cscopefinder.CscopeFinderPlugin.name=CscopeFinder
plugin.cscopefinder.CscopeFinderPlugin.author=Julius Gustavsson
plugin.cscopefinder.CscopeFinderPlugin.version=0.5.2
plugin.cscopefinder.CscopeFinderPlugin.docs=index.html
plugin.cscopefinder.CscopeFinderPlugin.usePluginHome=true
plugin.cscopefinder.CscopeFinderPlugin.depend.0=jdk 1.5
plugin.cscopefinder.CscopeFinderPlugin.depend.1=jedit 04.04.01.00
plugin.cscopefinder.CscopeFinderPlugin.depend.2=plugin projectviewer.ProjectPlugin 2.9.0.0
plugin.cscopefinder.CscopeFinderPlugin.depend.3=optional plugin plugin.ise.plugin.nav.NavigatorPlugin 2.2.0.0
#}}}
#{{{ Menu items
plugin.cscopefinder.CscopeFinderPlugin.menu=cscopefinder-find-symbol \
cscopefinder-find-definition \
cscopefinder-find-calling \
cscopefinder-find-called-by \
cscopefinder-find-include \
cscopefinder-update-index \
cscopefinder-generate-index \
cscopefinder-abort-command
cscopefinder-preview-definition
#}}}
#{{{ Action labels
cscopefinder-find-symbol.label=Find this C symbol
cscopefinder-find-definition.label=Find definition
cscopefinder-find-calling.label=Find functions calling this
cscopefinder-find-called-by.label=Find functions called by this
cscopefinder-find-include.label=Find files #including this
cscopefinder-update-index.label=Update Cscope index
cscopefinder-generate-index.label=Generate Cscope index
cscopefinder-preview-definition.label=Preview definition
cscopefinder-abort-command.label=Abort current Cscope command
#}}}
#{{{ Dockables
dockables.CscopeFinder.results-list.title=Cscope Results
dockables.CscopeFinder.results-list.label=Cscope Results
dockables.CscopeFinder.preview.title=Cscope Definition Preview
dockables.CscopeFinder.preview.label=Cscope Definition Preview
#}}}
#{{{ Option pane
plugin.cscopefinder.CscopeFinderPlugin.option-pane=CscopeFinder
options.CscopeFinder.label=CscopeFinder
options.CscopeFinder.code=new cscopefinder.CscopeFinderOptionPane();
#}}}
#{{{ Options
options.CscopeFinder.cscope-path.default=cscope
options.CscopeFinder.font.default=Monospaced
options.CscopeFinder.fontsize.default=12
options.CscopeFinder.fontstyle.default=0
options.CscopeFinder.cscope-db-path.default=.jedit-cscope
options.CscopeFinder.fileglobs.default=*.h *.c *.cpp
options.CscopeFinder.index-timeout.default=3
options.CscopeFinder.index-auto.default=false
#}}}
#{{{ Messages
messages.CscopeFinder.cscope-path=Cscope executable path:
messages.CscopeFinder.cscope-path.tooltip=Full path to the cscope executable.
messages.CscopeFinder.check-cscope-path=Check path
messages.CscopeFinder.bad-cscope-path=Cscope path does not exist or is not an executable file
messages.CscopeFinder.good-cscope-path=Cscope path is okay
messages.CscopeFinder.font=Font:
messages.CscopeFinder.font.tooltip=Choose a font for the 'Cscope Results' dockable.
messages.CscopeFinder.fileglobs=Files to index:
messages.CscopeFinder.fileglobs.tooltip=Space seperated list of standards glob patterns.
messages.CscopeFinder.index-timeout=Indexing timeout:
messages.CscopeFinder.index-timeout.tooltip=Whatchdog timer value while cscope is indexing files (in case it hangs).
messages.CscopeFinder.index-timeout.units=minutes
messages.CscopeFinder.index-auto=Update index automatically
messages.CscopeFinder.index-auto.tooltip=Update the index automatically on e.g. buffer saves.
messages.CscopeFinder.progress.generating-filelist=Generating cscope.files
messages.CscopeFinder.progress.updating-index=Updating cscope index
#}}}