1#
2# Resource strings for Notepad example
3
4Title=Notepad
5ElementTreeFrameTitle=Elements
6
7# file Menu definition
8#
9# Each of the strings that follow form a key to be
10# used as the basis of a menu item definition.
11#
12# open ->  Notepad.openAction
13# new  ->  Notepad.newAction
14# save ->  Notepad.saveAction
15# exit ->  Notepad.exitAction
16
17fileLabel=File
18openLabel=Open
19openImage=resources/open.gif
20newLabel=New
21newImage=resources/new.gif
22saveLabel=Save
23saveImage=resources/save.gif
24exitLabel=Exit
25
26#
27# edit Menu definition
28#
29# cut   -> JTextComponent.cutAction
30# copy  -> JTextComponent.copyAction
31# paste -> JTextComponent.pasteAction
32
33editLabel=Edit
34cutLabel=Cut
35cutImage=resources/cut.gif
36copyLabel=Copy
37copyImage=resources/copy.gif
38pasteLabel=Paste
39pasteImage=resources/paste.gif
40undoLabel=Undo
41redoLabel=Redo
42
43#
44# debug Menu definition
45#
46
47debugLabel=Debug
48dumpLabel=Dump model to System.err
49showElementTreeLabel=Show Elements
50
51# toolbar definition
52#
53# Each of the strings that follow form a key to be
54# used as the basis of the tool definition.  Actions
55# are of course sharable, and in this case are shared
56# with the menu items.
57
58newTooltip=Create a new file
59openTooltip=Open a file
60saveTooltip=Save to a file
61cutTooltip=Move selection to clipboard
62copyTooltip=Copy selection to clipboard
63pasteTooltip=Paste clipboard to selection
64