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