Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewerResources.properties')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewerResources.properties111
1 files changed, 111 insertions, 0 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewerResources.properties b/bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewerResources.properties
new file mode 100644
index 000000000..e278ba7cd
--- /dev/null
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewerResources.properties
@@ -0,0 +1,111 @@
+###############################################################################
+# Copyright (c) 2000, 2009 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
+###############################################################################
+#
+# @(#)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 from Left to Right
+action.CopyLeftToRight.image=copy_r_co.gif
+
+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.gif
+
+action.CopyDiffLeftToRight.label=Copy Current Change to Right
+action.CopyDiffLeftToRight.tooltip=Copy Current Change from Left to Right
+action.CopyDiffLeftToRight.image=copycont_r_co.gif
+
+action.CopyDiffRightToLeft.label=Copy Current Change to Left
+action.CopyDiffRightToLeft.tooltip=Copy Current Change from Right to Left
+action.CopyDiffRightToLeft.image=copycont_l_co.gif
+
+action.NextDiff.label=Next Difference
+action.NextDiff.tooltip=Next Difference
+action.NextDiff.image=next_diff_nav.gif
+
+action.PrevDiff.label=Previous Difference
+action.PrevDiff.tooltip=Previous Difference
+action.PrevDiff.image=prev_diff_nav.gif
+
+action.NextChange.label=Next Change
+action.NextChange.tooltip=Next Change
+action.NextChange.image=next_change_nav.gif
+
+action.PrevChange.label=Previous Change
+action.PrevChange.tooltip=Previous Change
+action.PrevChange.image=prev_change_nav.gif
+
+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.gif
+
+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.gif
+
+
+#####################################################
+# 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