Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ab241fca3bc2bbd72da6c209b558102dd1a5c282 (plain) (blame)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
###############################################################################
# Copyright (c) 2013 Ericsson
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     Ericsson - Initial API and implementation
###############################################################################

#Properties file for org.eclipse.linuxtools.tmf.ui
Bundle-Vendor = Eclipse Linux Tools
Bundle-Name = Linux Tools TMF UI Plug-in

# Perspective and Views names
perspective.category.name = Tracing

views.category.name = Tracing
filters.view.name = Filters
colors.view.name = Colors
timechart.view.name = Time Chart
statistics.view.name = Statistics
events.editor.name = Events Editor
uml2sd.view.name = Sequence Diagram
histogram.view.name = Histogram
environment.view.name = Environment Variables
ssvisualizer.view.name = State System Explorer
callstack.view.name = Call Stack

# Tracing wizards
project.new.category.name = Tracing
project.new.wizard.name = Tracing Project
project.new.wizard.description = Create a new Tracing project
project.new.wizard.custom.text.parser = Custom Text Parser
project.new.wizard.custom.xml.parser = Custom XML Parser

project.import.wizard.name = Trace Import
project.import.wizard.name.batch = Batch Trace Import

# Preference page
preference.page.trace.name = Tracing
preference.page.uml2sd.name = UML2 Sequence Diagram
preferences.page.timestamp.format = Time Format

##Commands and Menus

binding.scheme = Tracing
binding.scheme.description = Default key binding for tracing
binding.context = Tracing

## Tracing commands
commands.category.name = Tracing
commands.category.description = Tracing Commands

## Common (re-used by multiple sub-menus)

command.open = Open
command.open.mnemonic = O
command.open.description = Open element

command.copy = Copy...
command.copy.mnemonic = C
command.copy.description = Copy element

command.rename = Rename...
command.rename.mnemonic = m
command.rename.description = Rename element

command.delete = Delete
command.delete.mnemonic = D
command.delete.description = Delete element

command.refresh = Refresh
command.refresh.mnemonic = f
command.refresh.description = Refresh project structure

command.delete_suppl_files = Delete Supplementary Files...
command.delete_suppl_files.mnemonic = S
command.delete_suppl_files.description = Delete Supplementary Files

command.select_trace_type = Select Trace Type...
command.select_trace_type.mnemonic = T
command.select_trace_type.description = Select a trace type
command.select_trace_type.bundle = Bundle
command.select_trace_type.type = Trace Type
command.select_trace_type.icon = Icon

command.batch_import = Batch Import...
command.batch_import.mnemonic = B
command.batch_import.description = Batch Import

command.export_to_text = Export To Text...
command.export_to_text.description = Export trace to text...

## Trace menu
#  Open, Copy, Rename, Delete, Delete Supplementary Files, Select Trace Type

## Trace folder menu
#  Import, Refresh

command.import = Import...
command.import.mnemonic = I
command.import.description = Import traces into project

command.batch_import = Batch Import...
command.batch_import.mnemonic = A
command.batch_import.description = Batch Import traces into project

## Experiment menu
#  Open, Copy, Rename, Remove, Delete Supplementary Files, Select Traces, Refresh

command.select_traces = Select Traces...
command.select_traces.mnemonic = T
command.select_traces.description = Select Traces

command.remove = Remove
command.remove.mnemonic = v
command.remove.description = Remove trace from experiment

## Experiment folder menu
#  New, Refresh
command.new_experiment = New...
command.new_experiment.mnemonic = N
command.new_experiment.description = Create Tracing Experiment

# Custom parsers
commands.parser.category.name = Parser Commands
commands.parser.category.description = Parser Commands
commands.parser.manage = Manage Custom Parsers...
commands.parser.manage.description = Manage Custom Parsers
 
contenttype.trace = TMF Trace

parser.provider.extension-point.name = Parser Providers
navigatorContent.name = TMF Elements
navigatorCommonFilter.name = State History Files

contexts.uml2sd = UML2 Sequence Diagram Viewer
commands.uml2sd.category.name = UML2 Sequence Diagram Viewer Commands
commands.uml2sd.category.description = UML2 Sequence Diagram Viewer Commands

commands.uml2sd.scrollup = Scroll up
commands.uml2sd.scrollup.description = Scroll up the sequence diagram
commands.uml2sd.scrolldown = Scroll down
commands.uml2sd.scrolldown.description = Scroll down the sequence diagram
commands.uml2sd.scrollleft = Scroll left
commands.uml2sd.scrollleft.description = Scroll left the sequence diagram
commands.uml2sd.scrollright = Scroll right
commands.uml2sd.scrollright.description = Scroll right the sequence diagram
commands.uml2sd.goto = Go to associated message
commands.uml2sd.goto.description = Go to the associated message
commands.uml2sd.showend = Show node end
commands.uml2sd.showend.description = Show the node end
commands.uml2sd.showstart = Show node start 
commands.uml2sd.showstart.description = Show the node start
 
# CTF trace type
tracetype.category.ctf = Common Trace Format
tracetype.type.ctf = Generic CTF Trace

Back to the top