blob: e0fdddc788cda4e4236feffc6a1e0617f0678a6c (
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
59
60
61
62
|
<?xml version="1.0" encoding="UTF-8"?>
<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="kio_locaterc"/>
<include>klocale.h</include>
<group name="General">
<entry name="caseSensitivity" type="Int">
<label>Case sensitivity</label>
<whatsthis>0 for automatic case sensitivity determination (lowercase pattern -> case insensitive, upper- or mixedcase pattern -> case sensitive), 1 for case sensitive and 2 for case insensitive.</whatsthis>
<default>0</default>
</entry>
<entry name="collapseDirectoryThreshold" type="Int">
<label>Collapse directory</label>
<whatsthis>Collapse a directory with more hits.</whatsthis>
<default>5</default>
</entry>
<entry name="collapsedDisplay" type="String">
<label>How to display a collapsed directory entry</label>
<whatsthis>Hint: %1 is substituted by the number of hits, %2 by the name of the directory.</whatsthis>
<default code="true">i18n("(%1 Hits) %2")</default>
</entry>
<entry name="collapsedIcon" type="Int">
<label>Icon to use for a collapsed directory entry</label>
<whatsthis>0-Blue, 1-Green, 2-Grey, 3-Orange, 4-Red, 5-Violet, 6-Yellow</whatsthis>
<default>1</default>
</entry>
</group>
<group name="Filtering">
<entry name="whiteList" type="StringList">
<label>White list</label>
<whatsthis>A path must match at least one of these regular expressions.</whatsthis>
<default>.</default>
</entry>
<entry name="blackList" type="StringList">
<label>Black list</label>
<whatsthis>A path may not match any of these regular expressions.</whatsthis>
<default></default>
</entry>
</group>
<group name="Locate">
<entry name="locateBinary" type="String">
<label>Locate Binary</label>
<default></default>
</entry>
<entry name="locateAdditionalArguments" type="String">
<label>Additional Arguments for locate</label>
<whatsthis>Do not use -r or -i here. The first will confuse kio-locate, while the latter can be changed through the caseSensitivity option.</whatsthis>
<default></default>
</entry>
</group>
</kcfg>
|