blob: 6e45d9bcdf80f4c9321992803f0ac5ebc5b1ae0a (
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
50
51
52
53
54
55
56
57
58
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE kcfg SYSTEM "http://www.kde.org/standards/kcfg/1.0/kcfg.dtd">
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
<kcfgfile name="dolphinrc"/>
<group name="ContextMenu">
<entry name="ShowCopyMoveMenu" type="Bool">
<label>Show 'Copy To' and 'Move To' commands in context menu</label>
<default>false</default>
</entry>
<entry name="ShowAddToPlaces" type="Bool">
<label>Show 'Add to Places' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowSortBy" type="Bool">
<label>Show 'Sort By' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowViewMode" type="Bool">
<label>Show 'View Mode' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowOpenInNewTab" type="Bool">
<label>Show 'Open in New Tab' and 'Open in New Tabs' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowOpenInNewWindow" type="Bool">
<label>Show 'Open in New Window' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowOpenInSplitView" type="Bool">
<label>Show 'Open In Split View' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowCopyLocation" type="Bool">
<label>Show 'Copy Location' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowDuplicateHere" type="Bool">
<label>Show 'Duplicate Here' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowOpenTerminal" type="Bool">
<label>Show 'Open Terminal' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowCopyToOtherSplitView" type="Bool">
<label>Show 'Copy to other split view' in context menu.</label>
<default>true</default>
</entry>
<entry name="ShowMoveToOtherSplitView" type="Bool">
<label>Show 'Move to other split view' in context menu.</label>
<default>true</default>
</entry>
</group>
</kcfg>
|