Skip to main content
summaryrefslogtreecommitdiffstats
blob: 76ae2b89d847505153b017e34c228276c15ea5d6 (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
###############################################################################
# Copyright (c) 2000, 2006 IBM Corporation and others.
# 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:
#     IBM Corporation - initial API and implementation
###############################################################################

# @(#)DiffTreeViewerResources.properties
#
# Resource strings for DiffTreeViewer.java

title= Structure Compare
defaultLabel= <no name>

#####################################################
# Dummy menu item for empty context menu
#####################################################

emptyMenuItem= <Empty Menu>

#####################################################
# Actions
#####################################################

action.Smart.label=Smart
action.Smart.tooltip=Guess Similar Elements
action.Smart.image=smartmode_co.gif

action.ExpandAll.label=Expand All
action.ExpandAll.tooltip=Expand All Nodes

action.CompareContents.label= Show Content Comparison
action.CompareContents.tooltip= Show Content Comparison

action.NextDiff.label=Next
action.NextDiff.tooltip=Select Next Change
action.NextDiff.image=next_nav.gif

action.PrevDiff.label=Previous
action.PrevDiff.tooltip=Select Previous Change
action.PrevDiff.image=prev_nav.gif

action.TakeLeft.label=Copy Left to Right
action.TakeLeft.tooltip=Copy Selected Nodes from Left to Right
action.TakeLeft.image=copycont_r_co.gif

action.TakeRight.label=Copy Right to Left
action.TakeRight.tooltip=Copy Selected Nodes from Right to Left
action.TakeRight.image=copycont_l_co.gif

Back to the top