Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: df4481ad0ecb21d101f967964b035720ce710d55 (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
###############################################################################
# Copyright (c) 2000, 2005 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
###############################################################################
error.CouldNotLoadResources = Unable to load resources
window.title = Paint

menu.Tools.label = Tools
menu.Options.label = Options

tool.Pencil.label = Pencil
tool.Pencil.tooltip = Pencil tool
tool.Pencil.image = tool_pencil.gif
tool.Pencil.description = Selects the Pencil tool.

tool.Airbrush.label = Airbrush
tool.Airbrush.tooltip = Airbrush tool
tool.Airbrush.image = tool_airbrush.gif
tool.Airbrush.description = Selects the Airbrush tool.

tool.Line.label = Line
tool.Line.tooltip = Line tool
tool.Line.image = tool_line.gif
tool.Line.description = Selects the Line tool.

tool.PolyLine.label = Polygon
tool.PolyLine.tooltip = Polygon tool
tool.PolyLine.image = tool_polyline.gif
tool.PolyLine.description = Selects the PolyLine tool.

tool.Rectangle.label = Rectangle
tool.Rectangle.tooltip = Rectangle tool
tool.Rectangle.image = tool_rectangle.gif
tool.Rectangle.description = Selects the Rectangle tool.

tool.Ellipse.label = Ellipse
tool.Ellipse.tooltip = Ellipse tool
tool.Ellipse.image = tool_ellipse.gif
tool.Ellipse.description = Selects the Ellipse tool.

tool.RoundedRectangle.label = Rounded Rectangle
tool.RoundedRectangle.tooltip = Rounded Rectangle tool
tool.RoundedRectangle.image = tool_roundedrectangle.gif
tool.RoundedRectangle.description = Selects the Rounded Rectangle tool.

tool.Text.label = Text
tool.Text.tooltip = Text tool
tool.Text.image = tool_text.gif
tool.Text.description = Selects the Text tool.
tool.Text.settings.defaulttext = Hello!
tool.Text.dialog.title = Text Tool Settings
tool.Text.dialog.message = Please enter the new text string to be painted.

tool.Null.label = <none>

fill.None.label = No Fill
fill.None.tooltip = No fill mode
fill.None.image = fill_none.gif
fill.None.description = Selects No Fill mode.

fill.Outline.label = Outline Fill
fill.Outline.tooltip = Outline fill mode
fill.Outline.image = fill_outline.gif
fill.Outline.description = Selects Outline Fill mode.

fill.Solid.label = Solid Fill
fill.Solid.tooltip = Solid fill mode
fill.Solid.image = fill_solid.gif
fill.Solid.description = Selects Solid Fill mode.

linestyle.Solid.label = Solid Line
linestyle.Solid.tooltip = Solid line style
linestyle.Solid.image = linestyle_solid.gif
linestyle.Solid.description = Select Solid Line style.

linestyle.Dot.label = Dotted Line
linestyle.Dot.tooltip = Dotted line style
linestyle.Dot.image = linestyle_dot.gif
linestyle.Dot.description = Select Dotted Line style.

linestyle.Dash.label = Dashed Line
linestyle.Dash.tooltip = Dashed line style
linestyle.Dash.image = linestyle_dash.gif
linestyle.Dash.description = Select Dashed Line style.

linestyle.DashDot.label = Dash-Dot Line
linestyle.DashDot.tooltip = Dash-Dot line style
linestyle.DashDot.image = linestyle_dashdot.gif
linestyle.DashDot.description = Select Dash-Dot Line style.

options.Font.label = Text Tool Font
options.Font.tooltip = Select Text Tool font
options.Font.image = options_font.gif
options.Font.description = Selects Text Tool font.
options.Font.dialog.title = Text Tool Font

settings.AirbrushRadius.text = Airbrush Radius
settings.AirbrushIntensity.text = Airbrush Intensity

session.Null.message = Select a tool...
session.ContinuousPaint.message = Click and drag to draw...
session.DragInteractivePaint.message = Click and drag to preview, release to draw, right-click to cancel...
session.SegmentedInteractivePaint.message.anchorMode = Click to set anchor...
session.SegmentedInteractivePaint.message.interactiveMode = Click to draw, double-click to close figure, right-click to cancel...
session.Text.message = Click to draw text, right-click to edit text...

status.Coord.format = ({0}, {1})
status.CoordRange.format = ({0}, {1}) - ({2}, {3})
status.Bar.format = {0} : {1}   {2}

Back to the top