blob: 31c6f75df8840c2fdcebf854744e2d0a3381d4ec (
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
|
<?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="ContentDisplay">
<entry name="DirectorySizeMode" type="Enum">
<label>How we display the size of directories</label>
<choices>
<choice name="ContentCount">
<label>Show the content count</label>
</choice>
<choice name="ContentSize">
<label>Show the content size</label>
</choice>
<choice name="None">
<label>Do not show any directory size</label>
</choice>
</choices>
<default>ContentCount</default>
</entry>
<entry name="RecursiveDirectorySizeLimit" type="UInt">
<label>Recursive directory size limit</label>
<default>10</default>
</entry>
<entry name="UseShortRelativeDates" type="Bool">
<label>if true we use short relative dates, if not short dates</label>
<default>true</default>
</entry>
<entry name="UsePermissionsFormat" type="Enum">
<label>Permissions style format</label>
<choices>
<choice name="SymbolicFormat" />
<choice name="NumericFormat" />
<choice name="CombinedFormat" />
</choices>
<default>0</default>
</entry>
</group>
</kcfg>
|