blob: 19474065aaa856ae1e20101122cdb47ed04bbd19 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE kcfg SYSTEM "http://www.kde.org/standards/kcfg/1.0/kcfg.dtd">
<kcfg>
<kcfgfile name="dolphinrc"/>
<group name="General">
<entry name="EditableUrl" type="Bool">
<label context="@label">Should the URL be editable for the user</label>
<default>false</default>
</entry>
<entry name="FirstRun" type="Bool">
<label context="@label">Is the application started the first time</label>
<default>true</default>
</entry>
<entry name="HomeUrl" type="String">
<label context="@label">Home URL</label>
<default>~</default>
</entry>
<entry name="SplitView" type="Bool">
<label context="@label">Split the view into two panes</label>
<default>false</default>
</entry>
<entry name="FilterBar" type="Bool">
<label context="@label">Should the filter bar be shown</label>
<default>false</default>
</entry>
<entry name="GlobalViewProps" type="Bool">
<label context="@label">Should the view properties used for all directories</label>
<default>false</default>
</entry>
<entry name="ViewPropsTimestamp" type="DateTime" >
<label context="@label">Timestamp since when the view properties are valid</label>
</entry>
</group>
</kcfg>
|