Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 94e8032ef5a75fab79a06d1ef5dfb713b796e0d7 (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
###############################################################################
# Copyright (c) 2000, 2016 IBM Corporation and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################
#
# @(#)TextMergeViewerResources.properties
#
# Resource strings for TextMergeViewer.java

title= Text Compare

saveDialog.title= Save Resource
saveDialog.message= Resource has been modified. Save changes?

compareProgressTask.title= Computing Differences...

tooComplexError.title= Error
tooComplexError.message= Too many differences. Turn on the 'Ignore White Space' option or do a structure compare first.

#####################################################
# Toolbar actions
#####################################################

action.CopyLeftToRight.label=Copy Left to Right
action.CopyLeftToRight.tooltip=Copy All Non-Conflicting Changes from Left to Right
action.CopyLeftToRight.image=copy_r_co.png

action.CopyRightToLeft.label=Copy Right to Left
action.CopyRightToLeft.tooltip=Copy All Non-Conflicting Changes from Right to Left
action.CopyRightToLeft.image=copy_l_co.png

action.CopyDiffLeftToRight.label=Copy Current Change to Right
action.CopyDiffLeftToRight.tooltip=Copy Current Change from Left to Right
action.CopyDiffLeftToRight.image=copycont_r_co.png

action.CopyDiffRightToLeft.label=Copy Current Change to Left
action.CopyDiffRightToLeft.tooltip=Copy Current Change from Right to Left
action.CopyDiffRightToLeft.image=copycont_l_co.png

action.NextDiff.label=Next Difference
action.NextDiff.tooltip=Next Difference
action.NextDiff.image=next_diff_nav.png

action.PrevDiff.label=Previous Difference
action.PrevDiff.tooltip=Previous Difference
action.PrevDiff.image=prev_diff_nav.png

action.NextChange.label=Next Change
action.NextChange.tooltip=Next Change
action.NextChange.image=next_change_nav.png

action.PrevChange.label=Previous Change
action.PrevChange.tooltip=Previous Change
action.PrevChange.image=prev_change_nav.png

action.EnableAncestor.label=Enable Ancestor Pane
action.EnableAncestor.tooltip.unchecked=Show Ancestor Pane
action.EnableAncestor.tooltip.checked=Hide Ancestor Pane
action.EnableAncestor.description.unchecked=Show Ancestor Pane
action.EnableAncestor.description.checked=Hide Ancestor Pane
action.EnableAncestor.image=ancestorpane_co.png

action.IgnoreAncestor.label=Ignore Ancestor
action.IgnoreAncestor.tooltip.unchecked=Two-Way Compare (Ignore Ancestor)
action.IgnoreAncestor.tooltip.checked=Three-Way Compare
action.IgnoreAncestor.description.unchecked=Two-Way Compare (Ignore Ancestor)
action.IgnoreAncestor.description.checked=Three-Way Compare
action.IgnoreAncestor.image=twowaycompare_co.png

action.SwitchLeftAndRight.label=Swap Left and Right View
action.SwitchLeftAndRight.tooltip=Swap Left and Right View
action.SwitchLeftAndRight.image=switch.png

#####################################################
# Context menu actions
#####################################################

action.undo.label=&Undo
action.undo.tooltip=Undo Last Operation

action.redo.label=&Redo
action.redo.tooltip=Redo Last Operation

action.cut.label=Cu&t
action.cut.tooltip=Cut Text Selection to Clipboard

action.copy.label=&Copy
action.copy.tooltip=Copy Text Selection to Clipboard

action.paste.label=&Paste
action.paste.tooltip=Replace Text Selection with Clipboard Contents

action.delete.label=&Delete
action.delete.tooltip=Delete Current Text Selection

action.find.label=&Find...
action.find.tooltip=Find Occurrence

action.selectAll.label=Select &All
action.selectAll.tooltip=Select All Changes

Editor.FindReplace.label=&Find/Replace...
Editor.FindReplace.tooltip=Find/Replace
Editor.FindReplace.image=
Editor.FindReplace.description=Find/Replace

action.IgnoreWhiteSpace.label=&Ignore White Space
action.IgnoreWhiteSpace.tooltip=Ignore White Space Where Applicable

Back to the top