Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6532b73942fdac9a789bc549cc20dc2960c8e028 (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
###############################################################################
# Copyright (c) 2000, 2005 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
###############################################################################


## Errors ##

Editor_error_no_provider=Text editor does not have a document provider

Editor_error_save_title=Save problems
Editor_error_save_message=Save could not be completed.

Editor_error_save_deleted_title=Cannot Save
Editor_error_save_deleted_message=The file has been deleted or is not accessible.

Editor_error_init= Editor could not be initialized.

Editor_error_save_outofsync_title=Update conflict
Editor_error_save_outofsync_message=The file has been changed on the file system. Do you want to overwrite the changes?

Editor_error_activated_outofsync_title=File Changed
Editor_error_activated_outofsync_message=The file has been changed on the file system. Do you want to load the changes?

Editor_error_activated_deleted_save_title=File Not Accessible
Editor_error_activated_deleted_save_message=The file has been deleted or is not accessible. Do you want to save your changes or close the editor without saving?
Editor_error_activated_deleted_save_button_save=Save
Editor_error_activated_deleted_save_button_close=Close
Editor_error_activated_deleted_close_title=File Not Accessible
Editor_error_activated_deleted_close_message=The file has been deleted or is not accessible. This editor will be closed.

Editor_error_refresh_outofsync_title=Problems loading File
Editor_error_refresh_outofsync_message=The file could not be loaded from the file system.

Editor_error_revert_title=Problems while reverting to saved state
Editor_error_revert_message=Could not revert to saved state.
Editor_error_setinput_title=Problem opening
Editor_error_setinput_message=Cannot open input element:

Editor_error_validateEdit_title= Problems editing file
Editor_error_validateEdit_message= The file cannot be edited.

AbstractDocumentProvider_error_save_inuse=File is either open in another editor or in use by another operation.

Editor_mark_status_message_mark_set=Mark set
Editor_mark_status_message_mark_cleared=Mark cleared
Editor_mark_status_message_mark_swapped=Mark swapped
MarkRegionTarget_markNotSet=mark not set
MarkRegionTarget_markNotVisible=mark not in visible region

# Incremental Find Status field
Editor_FindIncremental_name= Incremental Find
Editor_FindIncremental_reverse_name= Reverse Incremental Find
Editor_FindIncremental_not_found_pattern={0}{1} {2} not found
Editor_FindIncremental_found_pattern={0}{1}: {2}
Editor_FindIncremental_render_tab=<TAB>

# The following two properties must end in a space
Editor_FindIncremental_wrapped=Wrapped 
Editor_FindIncremental_reverse=Reverse 

Editor_ConvertLineDelimiter_title=Converting line delimiters...

## Status line ##
Editor_statusline_state_readonly_label=Read-Only
Editor_statusline_state_writable_label=Writable
Editor_statusline_mode_insert_label=Insert
Editor_statusline_mode_overwrite_label=Overwrite
Editor_statusline_mode_smartinsert_label=Smart Insert
Editor_statusline_position_pattern={0} : {1}
Editor_statusline_error_label=?

## Others ##
WorkbenchChainedTextFontFieldEditor_defaultWorkbenchTextFont=<Using Workbench Text Font>

FindReplace_title= Find/Replace
FindReplace_Find_label=&Find:
FindReplace_Replace_label=R&eplace With:
FindReplace_Direction=Direction
FindReplace_ForwardRadioButton_label=F&orward
FindReplace_BackwardRadioButton_label=&Backward
FindReplace_Scope=Scope
FindReplace_GlobalRadioButton_label=A&ll
FindReplace_SelectedRangeRadioButton_label=Selec&ted Lines
FindReplace_Options=Options
FindReplace_CaseCheckBox_label=&Case Sensitive
FindReplace_WrapCheckBox_label=Wra&p Search
FindReplace_WholeWordCheckBox_label=&Whole Word
FindReplace_IncrementalCheckBox_label=&Incremental
FindReplace_RegExCheckbox_label= Regular e&xpressions
FindReplace_FindNextButton_label=Fi&nd
FindReplace_ReplaceFindButton_label=Replace/Fin&d
FindReplace_ReplaceSelectionButton_label=&Replace
FindReplace_ReplaceAllButton_label=Replace &All
FindReplace_CloseButton_label=Close
FindReplace_Status_noMatch_label=String Not Found
FindReplace_Status_replacement_label=1 Match replaced
FindReplace_Status_replacements_label={0} matches replaced

FindNext_Status_noMatch_label=String Not Found

AbstractDocumentProvider_ok=OK
AbstractDocumentProvider_error=ERROR
FindReplaceDialog_read_only=Cannot replace. File is read-only.

Editor_MoveLines_IllegalMove_status= Move not possible - Uncheck "Show Source of Selected Element Only" to see the entire document

Editor_error_clipboard_copy_failed_message= Copy to clipboard failed.

Back to the top