summaryrefslogtreecommitdiff
path: root/libnautilus/nautilus-clipboard-ui.xml
blob: 200a159576b622e2ba8cb2e259f57140a318c3ba (plain)
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
<Root>

<commands>
        <cmd name="Cut"
         _label="Cut Text"
	 accel="*Control*x"
	 _tip="Cut the selected text to the clipboard"/>
        <cmd name="Copy"
         _label="Copy Text"
	 accel="*Control*c"
	 _tip="Copy the selected text to the clipboard"/>
        <cmd name="Paste"
         _label="Paste Text"
	 _tip="Paste the text stored on the clipboard"
	 accel="*Control*v"/>
        <cmd name="Clear"
	 _tip="Remove the selected text without putting it on the clipboard"
	 _label="Clear Text"/>
	<cmd name="Select All"
	 _label="Select All"
	 _tip="Select all the text in a text field"
	 accel="*Control*a"/>
</commands>

<menu>
	<submenu name="Edit">
			<menuitem name="Cut" 
				  _label="Cut _Text" 
               			  pixtype="stock" pixname="gtk-cut"
				  verb="Cut"/>
			<menuitem name="Copy" 
				  _label="_Copy Text" 
        			  pixtype="stock" pixname="gtk-copy"
				  verb="Copy"/>
			<menuitem name="Paste" 
				  _label="_Paste Text" 
        			  pixtype="stock" pixname="gtk-paste"
				  verb="Paste"/>
			<menuitem name="Clear" 
				  _label="C_lear Text" 
        			  pixtype="stock" pixname="gtk-clear"
				  verb="Clear"/>
			<menuitem name="Select All"
				  _label="Select _All"
				  verb="Select All"/>
	</submenu>
</menu>

</Root>