diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-12 18:09:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-12 18:09:55 +0000 |
commit | 630b7196d93786595546565329160ff26332704b (patch) | |
tree | 16f570c8f65cf789945d96ab7c4c7c9a46c10e2f /src/kio_locate.kcfg | |
download | tdeio-locate-630b7196d93786595546565329160ff26332704b.tar.gz tdeio-locate-630b7196d93786595546565329160ff26332704b.zip |
Added KDE3 version of kio-locate
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kio-locate@1089224 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kio_locate.kcfg')
-rw-r--r-- | src/kio_locate.kcfg | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/kio_locate.kcfg b/src/kio_locate.kcfg new file mode 100644 index 0000000..e0fdddc --- /dev/null +++ b/src/kio_locate.kcfg @@ -0,0 +1,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> |