From 7b4e49e1a69712dcb2943a15660f92ea3655233c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Tue, 3 Sep 2013 19:58:31 +0200 Subject: Additional k => tde renaming and fixes --- CMakeLists.txt | 2 +- TODO | 2 +- admin/detect_uds_hidden.diff | 6 +- admin/generic.py | 8 +- admin/kde.py | 8 +- doc/en/CMakeLists.txt | 2 +- doc/en/index.docbook | 32 ++--- po/CMakeLists.txt | 2 +- po/de/kio-locate.po | 244 --------------------------------------- po/de/tdeio-locate.po | 244 +++++++++++++++++++++++++++++++++++++++ po/fr/kio-locate.po | 244 --------------------------------------- po/fr/tdeio-locate.po | 244 +++++++++++++++++++++++++++++++++++++++ po/messages.sh | 2 +- po/tdeio_locate.pot | 6 +- src/klocateconfiglocatewidget.ui | 6 +- src/locate.protocol | 2 +- src/locater.cpp | 2 +- src/locater.h | 2 +- src/locater.protocol | 2 +- src/pattern.cpp | 2 +- src/pattern.h | 4 +- src/rlocate.protocol | 2 +- src/tdeio_locate.cpp | 8 +- src/tdeio_locate.h | 16 +-- src/tdeio_locate.kcfg | 2 +- templates/cpp | 2 +- templates/h | 2 +- 27 files changed, 549 insertions(+), 549 deletions(-) delete mode 100644 po/de/kio-locate.po create mode 100644 po/de/tdeio-locate.po delete mode 100644 po/fr/kio-locate.po create mode 100644 po/fr/tdeio-locate.po diff --git a/CMakeLists.txt b/CMakeLists.txt index 20610b3..b257110 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ cmake_minimum_required( VERSION 2.8 ) ##### general package setup ##################### -project( kio-locate ) +project( tdeio-locate ) ##### include essential cmake modules ########### diff --git a/TODO b/TODO index 75b6edb..c3f340d 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,7 @@ Short Term Mid Term -+ Add kio-locate to kde-extragear. ++ Add tdeio-locate to kde-extragear. + Translations needed. Contact Håvard Dahle for Norwegian translation. + Support searches on remote servers via ssh. A possible search could then look like "locate://username@server:port pattern". (Suggested diff --git a/admin/detect_uds_hidden.diff b/admin/detect_uds_hidden.diff index 98805c9..d92ccaf 100644 --- a/admin/detect_uds_hidden.diff +++ b/admin/detect_uds_hidden.diff @@ -1,7 +1,7 @@ -Only in kio-locate/admin/: .arch-ids -diff -ur bksys-1.5.1.pre4/admin/kde.py kio-locate/admin/kde.py +Only in tdeio-locate/admin/: .arch-ids +diff -ur bksys-1.5.1.pre4/admin/kde.py tdeio-locate/admin/kde.py --- bksys-1.5.1.pre4/admin/kde.py 2005-08-16 23:16:32.000000000 +0200 -+++ kio-locate/admin/kde.py 2005-08-17 12:27:49.000000000 +0200 ++++ tdeio-locate/admin/kde.py 2005-08-17 12:27:49.000000000 +0200 @@ -242,6 +242,15 @@ qtlibs=qtdir+"/lib"+libsuffix env['QTLIBPATH']=qtlibs diff --git a/admin/generic.py b/admin/generic.py index 0837fb9..b86d0b7 100644 --- a/admin/generic.py +++ b/admin/generic.py @@ -86,7 +86,7 @@ def pprint(env, col, str, label=''): class genobj: def __init__(self, val, env): - if not val in "program shlib kioslave staticlib".split(): + if not val in "program shlib tdeioslave staticlib".split(): print "unknown genobj given: "+val env.Exit(1) @@ -224,7 +224,7 @@ class genobj: self.env.pprint('RED',"no target given to object - self.target") self.env.Exit(1) if not self.env.has_key('nosmart_includes'): self.env.AppendUnique(CPPPATH=['./']) - if self.type == "kioslave": self.libprefix='' + if self.type == "tdeioslave": self.libprefix='' if len(self.includes)>0: self.env.AppendUnique(CPPPATH=self.fixpath(self.includes)) if len(self.cxxflags)>0: self.env.AppendUnique(CXXFLAGS=self.env.make_list(self.cxxflags)) @@ -250,7 +250,7 @@ class genobj: # the target to return - no more self.env modification is allowed after this part ret=None - if self.type=='shlib' or self.type=='kioslave': + if self.type=='shlib' or self.type=='tdeioslave': ret=self.env.bksys_shlib(self.p_localtarget, self.p_localsource, self.instdir, self.libprefix, self.vnum) elif self.type=='program': @@ -613,7 +613,7 @@ def generate(env): for dir in ldirs: lenv.BuildDir(buildto+os.path.sep+dir, dir) - #valid_targets = "program shlib kioslave staticlib".split() + #valid_targets = "program shlib tdeioslave staticlib".split() SConsEnvironment.bksys_install = bksys_install SConsEnvironment.bksys_shlib = bksys_shlib SConsEnvironment.subdirs = subdirs diff --git a/admin/kde.py b/admin/kde.py index d545474..3b7c179 100644 --- a/admin/kde.py +++ b/admin/kde.py @@ -373,7 +373,7 @@ def generate(env): env['BUILDERS']['Uic']=Builder(action=uic_processing,emitter=uicEmitter,suffix='.h',src_suffix='.ui') def kcfg_buildit(target, source, env): - comp='kconfig_compiler -d%s %s %s' % (str(source[0].get_dir()), source[1].path, source[0].path) + comp='tdeconfig_compiler -d%s %s %s' % (str(source[0].get_dir()), source[1].path, source[0].path) return env.Execute(comp) def kcfg_stringit(target, source, env): print "processing %s to get %s and %s" % (source[0].name, target[0].name, target[1].name) @@ -522,7 +522,7 @@ def generate(env): for ofile in other_files: if ofile == file: env.pprint('RED',"WARNING: You have included %s.kcfg and another file of the same prefix"%file) - print "Files generated by kconfig_compiler (settings.h, settings.cpp) must not be included" + print "Files generated by tdeconfig_compiler (settings.h, settings.cpp) must not be included" return src @@ -785,7 +785,7 @@ def generate(env): comp='mkdir -p %s && cd %s && rm -f common && ln -s ../common common' % (dir, dir) lenv.Execute(comp) - #valid_targets = "program shlib kioslave staticlib".split() + #valid_targets = "program shlib tdeioslave staticlib".split() import generic class kobject(generic.genobj): def __init__(self, val, senv=None): @@ -801,7 +801,7 @@ def generate(env): self.unlockchdir() self.executed=1 return - if (self.type=='shlib' or self.type=='kioslave'): + if (self.type=='shlib' or self.type=='tdeioslave'): install_dir = 'KDEMODULE' if self.iskdelib==1: install_dir = 'KDELIB' self.instdir=getInstDirForResType(self.orenv, install_dir) diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt index 11f01ea..df19cbd 100644 --- a/doc/en/CMakeLists.txt +++ b/doc/en/CMakeLists.txt @@ -9,4 +9,4 @@ # ################################################# -tde_create_handbook( DESTINATION kio-locate ) +tde_create_handbook( DESTINATION tdeio-locate ) diff --git a/doc/en/index.docbook b/doc/en/index.docbook index e3b93be..5669826 100644 --- a/doc/en/index.docbook +++ b/doc/en/index.docbook @@ -1,9 +1,9 @@ + - &app;"> + &app;"> &app; &app_version;"> @@ -70,18 +70,18 @@ -&kio-locate; is a KDE I/O Slave for the locate command. +&tdeio-locate; is a KDE I/O Slave for the locate command. KDE -kio-locate +tdeio-locate tdeio_locate kiolocate locate slocate -kio-slave +tdeio-slave tdeio_slave tdeioslave search @@ -100,25 +100,25 @@ problems. Basically a long version of the abstract. Don't include a revision history. (see installation appendix comment) --> -&kio-locate; is a KDE I/O Slave for the locate command. +&tdeio-locate; is a KDE I/O Slave for the locate command. - This means that you can use &kio-locate; by simply typing in konquerors address box. You can e.g. type locate:index.html to find all files that contain "index.html" in their name. + This means that you can use &tdeio-locate; by simply typing in konquerors address box. You can e.g. type locate:index.html to find all files that contain "index.html" in their name. -There's even more: You can use &kio-locate; in all TDE applications that accept URLs. +There's even more: You can use &tdeio-locate; in all TDE applications that accept URLs. -To find out more about &kio-locate; and to look for new versions, you should take a look at arminstraub.de. +To find out more about &tdeio-locate; and to look for new versions, you should take a look at arminstraub.de. - + How to use this? - You can use &kio-locate; mostly as you use locate. Instead of typing locate pattern at a command prompt, you start the search with &kio-locate; directly in konqueror. You just enter locate:pattern as the address. + You can use &tdeio-locate; mostly as you use locate. Instead of typing locate pattern at a command prompt, you start the search with &tdeio-locate; directly in konqueror. You just enter locate:pattern as the address. By default, a search locate:pattern is case insensitive if the pattern is lowercase. If the pattern is mixed- or uppercase the search is case sensitive. This default behaviour can be overridden. @@ -127,12 +127,12 @@ To find out more about &kio-locate; and to look for new versions, you should tak Hint: Type locater:config in the konqueror address bar to show the configuration dialog. Likewise, locater:help shows this help document. - + How to write patterns - Regular wildcard characters may be used in the patterns passed to &kio-locate;: A star (*) matches any string with nonzero length, a question mark (?) matches a single character, and a character list ([abc-z]) matches the characters in the list. A character list can be inverted by putting a caret after the first square bracket ([^abc-z]). + Regular wildcard characters may be used in the patterns passed to &tdeio-locate;: A star (*) matches any string with nonzero length, a question mark (?) matches a single character, and a character list ([abc-z]) matches the characters in the list. A character list can be inverted by putting a caret after the first square bracket ([^abc-z]). Every plus (+) in a search is used just as a star (*) is. Instead of locate:*.html you may also type locate:+.html. This is because you can't use the star in konqueror. In other apps both ways are supported. Should you need to use a plus in your search you have to escape it with a backslash. Instead of locate:g++ you have to use locate:g\+\+. Furthermore you can't use a slash as the last character of your query. O.k. you can, but KDE will ignore it. In such a case you can quote your pattern: Write locate:"servicemenus/" rather than locate:servicemenus/. @@ -146,12 +146,12 @@ To find out more about &kio-locate; and to look for new versions, you should tak - -Take a look at &kio-locate; + +Take a look at &tdeio-locate; - Here's a screenshot of &kio-locate; + Here's a screenshot of &tdeio-locate; diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt index 61233cd..7d2e422 100644 --- a/po/CMakeLists.txt +++ b/po/CMakeLists.txt @@ -9,7 +9,7 @@ # ################################################# -file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} kio-locate.po ) +file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} tdeio-locate.po ) foreach( _po ${po_files} ) get_filename_component( _lang ${_po} PATH ) diff --git a/po/de/kio-locate.po b/po/de/kio-locate.po deleted file mode 100644 index 4d8b0e6..0000000 --- a/po/de/kio-locate.po +++ /dev/null @@ -1,244 +0,0 @@ -# kio-locate: KDE I/O Slave for the locate command -# -# Copyright (C) 2004 by Armin Straub -# linux@arminstraub.de -# -# This file is distributed under the same license as kio-locate. -msgid "" -msgstr "" -"Project-Id-Version: kio-locate\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-15 10:08+0200\n" -"PO-Revision-Date: 2004-09-29 12:59+0200\n" -"Last-Translator: Armin Straub \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3.1\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../src/tdeio_locate.cpp:499 -msgid "Locating %1 ..." -msgstr "Suche %1 ..." - -#: ../src/tdeio_locate.cpp:614 -msgid "Finished." -msgstr "Suche abgeschlossen." - -#: ../src/tdeio_locate.cpp:752 -msgid "Configure - kio-locate" -msgstr "Einstellungen - kio-locate" - -#: ../src/tdeio_locate.cpp:755 -msgid "General" -msgstr "Allgemeines" - -#: ../src/tdeio_locate.cpp:756 -msgid "Filters" -msgstr "Filter" - -#: ../src/tdeio_locate.cpp:757 -msgid "Locate" -msgstr "Locate" - -#: ../src/tdeio_locate.cpp:778 -msgid "Configuration succesfully updated." -msgstr "Einstellungen wurden übernommen." - -#: ../src/tdeio_locate.cpp:780 -msgid "Configuration unchanged." -msgstr "Einstellungen unverändert." - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:78 -msgid "KLocateConfigFilterWidget" -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:79 -msgid "Filter Settings" -msgstr "Filter Einstellungen" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:80 -msgid "" -"A path must match at least one of the regular expressions in the White List " -"and it must not match any of the expressions in the Black List for being " -"displayed as a hit." -msgstr "Damit ein Pfad als Treffer angezeigt wird, muss er mit mindestens einem regulären Ausdruck aus der White List übereinstimmen und darf mit keinem Eintrag aus der Black List übereinstimmen." - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:81 -msgid "&White List" -msgstr "&White List" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:82 -msgid "A path must match at least one of these regular expressions." -msgstr "Pfade müssen mit mindestens einer dieser regulären Ausdrücke übereinstimmen." - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:83 -msgid "" -"Hint: E.g. replacing the default '.' entry by '^/home/user/' will " -"only allow hits in the home directory of user." -msgstr "Tipp: Sie können z.B. den standardmäßigen Eintrag '.' durch '^/home/user/' ersetzen, um nur noch Treffer im Heimatverzeichnis von user anzuzeigen." - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:84 -msgid "&Black List" -msgstr "&Black List" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:85 -msgid "A path may not match any of these regular expressions." -msgstr "Pfade dürfen mit keiner dieser regulären Ausdrücke übereinstimmen." - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:86 -msgid "" -"Hint: Adding e.g. '/\\.' will no longer display hidden files (this " -"will be unnecessary in some next version of kde though)." -msgstr "Tipp: Fügen Sie z.B. '/\\.' hinzu, um versteckte Dateien bei der Suche zu ignorieren (in einer der nächsten KDE Versionen wird das unnötig sein)." - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:111 -msgid "KLocateConfigLocateWidget" -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:112 -msgid "Locate Settings" -msgstr "Einstellungen für Locate" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113 -msgid "" -"

kio-locate does not handle the settings of locate, because this setup " -"varies among different distributions. There are even distributions that use " -"replacements like slocate.

\n" -"

To configure locate you should take a look at the manpage of locate. " -"Since most distributions use cron for updating locate's database, it may " -"also be useful to take a look at the manpage of crontab.

" -msgstr "

Sie können die Einstellungen von locate nicht mit kio-locate vornehmen, da es dabei große Unterschiede zwischen verschiedenen Distributionen gibt. Einige verwenden sogar ganz andere Ersatzprogramme.

\n" -"

Für die Einstellungen von locate lohnt es sich einen Blick in die Manpage zu locate zu werfen. Da die meisten Distributionen cron zur Aktualisierung der Datenbank für locate verwenden, kann es sich auch lohnen die Manpage zu crontab zu lesen.

" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:115 -msgid "Locate Binary" -msgstr "Locate Backend" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:116 -msgid "" -"Use these settings only if you really know what you do. Otherwise the " -"default should be ok." -msgstr "Verwenden Sie die folgenden Einstellung nur wenn Sie genau wissen, was Sie tun. Ansonsten sollten die Vorgaben genügen." - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:117 -msgid "Locate &binary:" -msgstr "&Pfad zu locate:" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:118 -msgid "" -"Hint: You may for example choose to use slocate instead of plain old " -"locate." -msgstr "Tipp: Sie könnten hier z.B. slocate anstelle von locate verwenden." - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:119 -msgid "Additional &arguments:" -msgstr "Zusätzliche &Argumente:" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120 -msgid "" -"Hint: Do not use -r or -i here. The first will confuse kio-locate, " -"and the latter can be changed through the \"Case sensitivity\" option." -msgstr "Tipp: Verwenden Sie nicht -r oder -i. Ersteres verwirrt kio-locate und letzteres kann durch die Option \"Groß- und Kleinschreibung\" eingestellt werden." - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:870 -msgid "KLocateConfigWidget" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:871 -msgid "General Settings" -msgstr "Allgemeine Einstellungen" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:872 -msgid "Case se&nsitivity:" -msgstr "&Groß- und Kleinschreibung" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:874 -msgid "Auto" -msgstr "Auto" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:875 -msgid "Sensitive" -msgstr "Verwenden" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:876 -msgid "Insensitive" -msgstr "Ignorieren" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:877 -msgid "" -"Hint: With \"Auto\" case sensitivity a pattern will be case " -"insensitive if it is lowercase and case sensitive if it is mixed- or " -"uppercase." -msgstr "Tipp: Wenn Sie \"Auto\" auswählen wird eine Suche Groß- und Kleinschreibung nur dann unterscheiden, falls Sie nicht durchgehend klein geschrieben ist." - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:878 -msgid "Collapsing Search Results" -msgstr "Verzeichnisse zusammenfassen" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:879 -msgid "&Collapse a directory with more hits:" -msgstr "Verzeichnisse mit mehr Treffern &zusammenfassen." - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:880 -msgid "Collapse a directory with more hits." -msgstr "Verzeichnisse mit mehr Treffern zusammenfassen." - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:881 -msgid "Text of a collapsed &directory:" -msgstr "Anzeige einer &Verzeichnissuche:" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:882 -msgid "" -"Hint: %1 is substituted by the number of hits and %2 by the name of " -"the directory." -msgstr "Tipp: %1 wird durch die Anzahl der Treffer und %2 durch den Verzeichnisnamen ersetzt." - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:883 -msgid "&Icon of a collapsed directory:" -msgstr "&Icon für Verzeichnissuchen:" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:885 -msgid "Blue" -msgstr "Blau" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:886 -msgid "Green" -msgstr "Grün" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:887 -msgid "Grey" -msgstr "Grau" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:888 -msgid "Orange" -msgstr "Orange" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:889 -msgid "Red" -msgstr "Rot" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:890 -msgid "Violet" -msgstr "Violett" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:891 -msgid "Yellow" -msgstr "Gelb" - -#: ../src/tmphack/klocateconfig.cpp:35 -msgid "(%1 Hits) %2" -msgstr "(%1 Treffer) %2" - -#: ../src/_translatorinfo.cpp:1 -msgid "" -"_: NAME OF TRANSLATORS\n" -"Your names" -msgstr "" - -#: ../src/_translatorinfo.cpp:3 -msgid "" -"_: EMAIL OF TRANSLATORS\n" -"Your emails" -msgstr "" diff --git a/po/de/tdeio-locate.po b/po/de/tdeio-locate.po new file mode 100644 index 0000000..ea8b2c8 --- /dev/null +++ b/po/de/tdeio-locate.po @@ -0,0 +1,244 @@ +# tdeio-locate: KDE I/O Slave for the locate command +# +# Copyright (C) 2004 by Armin Straub +# linux@arminstraub.de +# +# This file is distributed under the same license as tdeio-locate. +msgid "" +msgstr "" +"Project-Id-Version: tdeio-locate\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-09-15 10:08+0200\n" +"PO-Revision-Date: 2004-09-29 12:59+0200\n" +"Last-Translator: Armin Straub \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.3.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/tdeio_locate.cpp:499 +msgid "Locating %1 ..." +msgstr "Suche %1 ..." + +#: ../src/tdeio_locate.cpp:614 +msgid "Finished." +msgstr "Suche abgeschlossen." + +#: ../src/tdeio_locate.cpp:752 +msgid "Configure - tdeio-locate" +msgstr "Einstellungen - tdeio-locate" + +#: ../src/tdeio_locate.cpp:755 +msgid "General" +msgstr "Allgemeines" + +#: ../src/tdeio_locate.cpp:756 +msgid "Filters" +msgstr "Filter" + +#: ../src/tdeio_locate.cpp:757 +msgid "Locate" +msgstr "Locate" + +#: ../src/tdeio_locate.cpp:778 +msgid "Configuration succesfully updated." +msgstr "Einstellungen wurden übernommen." + +#: ../src/tdeio_locate.cpp:780 +msgid "Configuration unchanged." +msgstr "Einstellungen unverändert." + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:78 +msgid "KLocateConfigFilterWidget" +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:79 +msgid "Filter Settings" +msgstr "Filter Einstellungen" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:80 +msgid "" +"A path must match at least one of the regular expressions in the White List " +"and it must not match any of the expressions in the Black List for being " +"displayed as a hit." +msgstr "Damit ein Pfad als Treffer angezeigt wird, muss er mit mindestens einem regulären Ausdruck aus der White List übereinstimmen und darf mit keinem Eintrag aus der Black List übereinstimmen." + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:81 +msgid "&White List" +msgstr "&White List" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:82 +msgid "A path must match at least one of these regular expressions." +msgstr "Pfade müssen mit mindestens einer dieser regulären Ausdrücke übereinstimmen." + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:83 +msgid "" +"Hint: E.g. replacing the default '.' entry by '^/home/user/' will " +"only allow hits in the home directory of user." +msgstr "Tipp: Sie können z.B. den standardmäßigen Eintrag '.' durch '^/home/user/' ersetzen, um nur noch Treffer im Heimatverzeichnis von user anzuzeigen." + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:84 +msgid "&Black List" +msgstr "&Black List" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:85 +msgid "A path may not match any of these regular expressions." +msgstr "Pfade dürfen mit keiner dieser regulären Ausdrücke übereinstimmen." + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:86 +msgid "" +"Hint: Adding e.g. '/\\.' will no longer display hidden files (this " +"will be unnecessary in some next version of kde though)." +msgstr "Tipp: Fügen Sie z.B. '/\\.' hinzu, um versteckte Dateien bei der Suche zu ignorieren (in einer der nächsten KDE Versionen wird das unnötig sein)." + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:111 +msgid "KLocateConfigLocateWidget" +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:112 +msgid "Locate Settings" +msgstr "Einstellungen für Locate" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113 +msgid "" +"

tdeio-locate does not handle the settings of locate, because this setup " +"varies among different distributions. There are even distributions that use " +"replacements like slocate.

\n" +"

To configure locate you should take a look at the manpage of locate. " +"Since most distributions use cron for updating locate's database, it may " +"also be useful to take a look at the manpage of crontab.

" +msgstr "

Sie können die Einstellungen von locate nicht mit tdeio-locate vornehmen, da es dabei große Unterschiede zwischen verschiedenen Distributionen gibt. Einige verwenden sogar ganz andere Ersatzprogramme.

\n" +"

Für die Einstellungen von locate lohnt es sich einen Blick in die Manpage zu locate zu werfen. Da die meisten Distributionen cron zur Aktualisierung der Datenbank für locate verwenden, kann es sich auch lohnen die Manpage zu crontab zu lesen.

" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:115 +msgid "Locate Binary" +msgstr "Locate Backend" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:116 +msgid "" +"Use these settings only if you really know what you do. Otherwise the " +"default should be ok." +msgstr "Verwenden Sie die folgenden Einstellung nur wenn Sie genau wissen, was Sie tun. Ansonsten sollten die Vorgaben genügen." + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:117 +msgid "Locate &binary:" +msgstr "&Pfad zu locate:" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:118 +msgid "" +"Hint: You may for example choose to use slocate instead of plain old " +"locate." +msgstr "Tipp: Sie könnten hier z.B. slocate anstelle von locate verwenden." + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:119 +msgid "Additional &arguments:" +msgstr "Zusätzliche &Argumente:" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120 +msgid "" +"Hint: Do not use -r or -i here. The first will confuse tdeio-locate, " +"and the latter can be changed through the \"Case sensitivity\" option." +msgstr "Tipp: Verwenden Sie nicht -r oder -i. Ersteres verwirrt tdeio-locate und letzteres kann durch die Option \"Groß- und Kleinschreibung\" eingestellt werden." + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:870 +msgid "KLocateConfigWidget" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:871 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:872 +msgid "Case se&nsitivity:" +msgstr "&Groß- und Kleinschreibung" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:874 +msgid "Auto" +msgstr "Auto" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:875 +msgid "Sensitive" +msgstr "Verwenden" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:876 +msgid "Insensitive" +msgstr "Ignorieren" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:877 +msgid "" +"Hint: With \"Auto\" case sensitivity a pattern will be case " +"insensitive if it is lowercase and case sensitive if it is mixed- or " +"uppercase." +msgstr "Tipp: Wenn Sie \"Auto\" auswählen wird eine Suche Groß- und Kleinschreibung nur dann unterscheiden, falls Sie nicht durchgehend klein geschrieben ist." + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:878 +msgid "Collapsing Search Results" +msgstr "Verzeichnisse zusammenfassen" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:879 +msgid "&Collapse a directory with more hits:" +msgstr "Verzeichnisse mit mehr Treffern &zusammenfassen." + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:880 +msgid "Collapse a directory with more hits." +msgstr "Verzeichnisse mit mehr Treffern zusammenfassen." + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:881 +msgid "Text of a collapsed &directory:" +msgstr "Anzeige einer &Verzeichnissuche:" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:882 +msgid "" +"Hint: %1 is substituted by the number of hits and %2 by the name of " +"the directory." +msgstr "Tipp: %1 wird durch die Anzahl der Treffer und %2 durch den Verzeichnisnamen ersetzt." + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:883 +msgid "&Icon of a collapsed directory:" +msgstr "&Icon für Verzeichnissuchen:" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:885 +msgid "Blue" +msgstr "Blau" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:886 +msgid "Green" +msgstr "Grün" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:887 +msgid "Grey" +msgstr "Grau" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:888 +msgid "Orange" +msgstr "Orange" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:889 +msgid "Red" +msgstr "Rot" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:890 +msgid "Violet" +msgstr "Violett" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:891 +msgid "Yellow" +msgstr "Gelb" + +#: ../src/tmphack/klocateconfig.cpp:35 +msgid "(%1 Hits) %2" +msgstr "(%1 Treffer) %2" + +#: ../src/_translatorinfo.cpp:1 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#: ../src/_translatorinfo.cpp:3 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" diff --git a/po/fr/kio-locate.po b/po/fr/kio-locate.po deleted file mode 100644 index 6257c22..0000000 --- a/po/fr/kio-locate.po +++ /dev/null @@ -1,244 +0,0 @@ -# translation of tdeio_locate.po to French -# kio-locate: KDE I/O Slave for the locate command -# -# Copyright (C) 2004 by Armin Straub -# linux@arminstraub.de -# -# This file is distributed under the same license as kio-locate. -# Laurent Rathle , 2004. -msgid "" -msgstr "" -"Project-Id-Version: tdeio_locate\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-15 10:08+0200\n" -"PO-Revision-Date: 2004-10-21 16:52+0200\n" -"Last-Translator: Laurent Rathle \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.9\n" - -#: ../src/tdeio_locate.cpp:499 -msgid "Locating %1 ..." -msgstr "Recherche de %1 en cours ..." - -#: ../src/tdeio_locate.cpp:614 -msgid "Finished." -msgstr "Terminé." - -#: ../src/tdeio_locate.cpp:752 -msgid "Configure - kio-locate" -msgstr "" - -#: ../src/tdeio_locate.cpp:755 -msgid "General" -msgstr "" - -#: ../src/tdeio_locate.cpp:756 -msgid "Filters" -msgstr "" - -#: ../src/tdeio_locate.cpp:757 -msgid "Locate" -msgstr "" - -#: ../src/tdeio_locate.cpp:778 -msgid "Configuration succesfully updated." -msgstr "" - -#: ../src/tdeio_locate.cpp:780 -msgid "Configuration unchanged." -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:78 -msgid "KLocateConfigFilterWidget" -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:79 -msgid "Filter Settings" -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:80 -msgid "" -"A path must match at least one of the regular expressions in the White List " -"and it must not match any of the expressions in the Black List for being " -"displayed as a hit." -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:81 -msgid "&White List" -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:82 -msgid "A path must match at least one of these regular expressions." -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:83 -msgid "" -"Hint: E.g. replacing the default '.' entry by '^/home/user/' will " -"only allow hits in the home directory of user." -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:84 -msgid "&Black List" -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:85 -msgid "A path may not match any of these regular expressions." -msgstr "" - -#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:86 -msgid "" -"Hint: Adding e.g. '/\\.' will no longer display hidden files (this " -"will be unnecessary in some next version of kde though)." -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:111 -msgid "KLocateConfigLocateWidget" -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:112 -msgid "Locate Settings" -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113 -msgid "" -"

kio-locate does not handle the settings of locate, because this setup " -"varies among different distributions. There are even distributions that use " -"replacements like slocate.

\n" -"

To configure locate you should take a look at the manpage of locate. " -"Since most distributions use cron for updating locate's database, it may " -"also be useful to take a look at the manpage of crontab.

" -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:115 -msgid "Locate Binary" -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:116 -msgid "" -"Use these settings only if you really know what you do. Otherwise the " -"default should be ok." -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:117 -msgid "Locate &binary:" -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:118 -msgid "" -"Hint: You may for example choose to use slocate instead of plain old " -"locate." -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:119 -msgid "Additional &arguments:" -msgstr "" - -#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120 -msgid "" -"Hint: Do not use -r or -i here. The first will confuse kio-locate, " -"and the latter can be changed through the \"Case sensitivity\" option." -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:870 -msgid "KLocateConfigWidget" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:871 -msgid "General Settings" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:872 -msgid "Case se&nsitivity:" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:874 -msgid "Auto" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:875 -msgid "Sensitive" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:876 -msgid "Insensitive" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:877 -msgid "" -"Hint: With \"Auto\" case sensitivity a pattern will be case " -"insensitive if it is lowercase and case sensitive if it is mixed- or " -"uppercase." -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:878 -msgid "Collapsing Search Results" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:879 -msgid "&Collapse a directory with more hits:" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:880 -msgid "Collapse a directory with more hits." -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:881 -msgid "Text of a collapsed &directory:" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:882 -msgid "" -"Hint: %1 is substituted by the number of hits and %2 by the name of " -"the directory." -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:883 -msgid "&Icon of a collapsed directory:" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:885 -msgid "Blue" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:886 -msgid "Green" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:887 -msgid "Grey" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:888 -msgid "Orange" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:889 -msgid "Red" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:890 -msgid "Violet" -msgstr "" - -#: ../src/tmphack/klocateconfigwidget.ui.cpp:891 -msgid "Yellow" -msgstr "" - -#: ../src/tmphack/klocateconfig.cpp:35 -msgid "(%1 Hits) %2" -msgstr "" - -#: ../src/_translatorinfo.cpp:1 -msgid "" -"_: NAME OF TRANSLATORS\n" -"Your names" -msgstr "" - -#: ../src/_translatorinfo.cpp:3 -msgid "" -"_: EMAIL OF TRANSLATORS\n" -"Your emails" -msgstr "" diff --git a/po/fr/tdeio-locate.po b/po/fr/tdeio-locate.po new file mode 100644 index 0000000..2f269a4 --- /dev/null +++ b/po/fr/tdeio-locate.po @@ -0,0 +1,244 @@ +# translation of tdeio_locate.po to French +# tdeio-locate: KDE I/O Slave for the locate command +# +# Copyright (C) 2004 by Armin Straub +# linux@arminstraub.de +# +# This file is distributed under the same license as tdeio-locate. +# Laurent Rathle , 2004. +msgid "" +msgstr "" +"Project-Id-Version: tdeio_locate\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-09-15 10:08+0200\n" +"PO-Revision-Date: 2004-10-21 16:52+0200\n" +"Last-Translator: Laurent Rathle \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9\n" + +#: ../src/tdeio_locate.cpp:499 +msgid "Locating %1 ..." +msgstr "Recherche de %1 en cours ..." + +#: ../src/tdeio_locate.cpp:614 +msgid "Finished." +msgstr "Terminé." + +#: ../src/tdeio_locate.cpp:752 +msgid "Configure - tdeio-locate" +msgstr "" + +#: ../src/tdeio_locate.cpp:755 +msgid "General" +msgstr "" + +#: ../src/tdeio_locate.cpp:756 +msgid "Filters" +msgstr "" + +#: ../src/tdeio_locate.cpp:757 +msgid "Locate" +msgstr "" + +#: ../src/tdeio_locate.cpp:778 +msgid "Configuration succesfully updated." +msgstr "" + +#: ../src/tdeio_locate.cpp:780 +msgid "Configuration unchanged." +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:78 +msgid "KLocateConfigFilterWidget" +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:79 +msgid "Filter Settings" +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:80 +msgid "" +"A path must match at least one of the regular expressions in the White List " +"and it must not match any of the expressions in the Black List for being " +"displayed as a hit." +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:81 +msgid "&White List" +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:82 +msgid "A path must match at least one of these regular expressions." +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:83 +msgid "" +"Hint: E.g. replacing the default '.' entry by '^/home/user/' will " +"only allow hits in the home directory of user." +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:84 +msgid "&Black List" +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:85 +msgid "A path may not match any of these regular expressions." +msgstr "" + +#: ../src/tmphack/klocateconfigfilterwidget.ui.cpp:86 +msgid "" +"Hint: Adding e.g. '/\\.' will no longer display hidden files (this " +"will be unnecessary in some next version of kde though)." +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:111 +msgid "KLocateConfigLocateWidget" +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:112 +msgid "Locate Settings" +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113 +msgid "" +"

tdeio-locate does not handle the settings of locate, because this setup " +"varies among different distributions. There are even distributions that use " +"replacements like slocate.

\n" +"

To configure locate you should take a look at the manpage of locate. " +"Since most distributions use cron for updating locate's database, it may " +"also be useful to take a look at the manpage of crontab.

" +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:115 +msgid "Locate Binary" +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:116 +msgid "" +"Use these settings only if you really know what you do. Otherwise the " +"default should be ok." +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:117 +msgid "Locate &binary:" +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:118 +msgid "" +"Hint: You may for example choose to use slocate instead of plain old " +"locate." +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:119 +msgid "Additional &arguments:" +msgstr "" + +#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120 +msgid "" +"Hint: Do not use -r or -i here. The first will confuse tdeio-locate, " +"and the latter can be changed through the \"Case sensitivity\" option." +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:870 +msgid "KLocateConfigWidget" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:871 +msgid "General Settings" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:872 +msgid "Case se&nsitivity:" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:874 +msgid "Auto" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:875 +msgid "Sensitive" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:876 +msgid "Insensitive" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:877 +msgid "" +"Hint: With \"Auto\" case sensitivity a pattern will be case " +"insensitive if it is lowercase and case sensitive if it is mixed- or " +"uppercase." +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:878 +msgid "Collapsing Search Results" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:879 +msgid "&Collapse a directory with more hits:" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:880 +msgid "Collapse a directory with more hits." +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:881 +msgid "Text of a collapsed &directory:" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:882 +msgid "" +"Hint: %1 is substituted by the number of hits and %2 by the name of " +"the directory." +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:883 +msgid "&Icon of a collapsed directory:" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:885 +msgid "Blue" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:886 +msgid "Green" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:887 +msgid "Grey" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:888 +msgid "Orange" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:889 +msgid "Red" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:890 +msgid "Violet" +msgstr "" + +#: ../src/tmphack/klocateconfigwidget.ui.cpp:891 +msgid "Yellow" +msgstr "" + +#: ../src/tmphack/klocateconfig.cpp:35 +msgid "(%1 Hits) %2" +msgstr "" + +#: ../src/_translatorinfo.cpp:1 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#: ../src/_translatorinfo.cpp:3 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" diff --git a/po/messages.sh b/po/messages.sh index abec01b..dfddc84 100755 --- a/po/messages.sh +++ b/po/messages.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Modified by Tobi Vollebregt for use with kio-locate. +# Modified by Tobi Vollebregt for use with tdeio-locate. # Inspired by Makefile.common from coolo # this script is used to update the .po files diff --git a/po/tdeio_locate.pot b/po/tdeio_locate.pot index b8c7a5a..3aec020 100644 --- a/po/tdeio_locate.pot +++ b/po/tdeio_locate.pot @@ -25,7 +25,7 @@ msgid "Finished." msgstr "" #: ../src/tdeio_locate.cpp:752 -msgid "Configure - kio-locate" +msgid "Configure - tdeio-locate" msgstr "" #: ../src/tdeio_locate.cpp:755 @@ -101,7 +101,7 @@ msgstr "" #: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113 msgid "" -"

kio-locate does not handle the settings of locate, because this setup " +"

tdeio-locate does not handle the settings of locate, because this setup " "varies among different distributions. There are even distributions that use " "replacements like slocate.

\n" "

To configure locate you should take a look at the manpage of locate. " @@ -135,7 +135,7 @@ msgstr "" #: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120 msgid "" -"Hint: Do not use -r or -i here. The first will confuse kio-locate, " +"Hint: Do not use -r or -i here. The first will confuse tdeio-locate, " "and the latter can be changed through the \"Case sensitivity\" option." msgstr "" diff --git a/src/klocateconfiglocatewidget.ui b/src/klocateconfiglocatewidget.ui index 705a240..db311dd 100644 --- a/src/klocateconfiglocatewidget.ui +++ b/src/klocateconfiglocatewidget.ui @@ -35,7 +35,7 @@ textLabel3_2 - <p>kio-locate does not handle the settings of locate, because this setup varies among different distributions. There are even distributions that use replacements like slocate.</p> + <p>tdeio-locate does not handle the settings of locate, because this setup varies among different distributions. There are even distributions that use replacements like slocate.</p> <p>To configure locate you should take a look at the manpage of locate. Since most distributions use cron for updating locate's database, it may also be useful to take a look at the manpage of crontab.</p> @@ -131,7 +131,7 @@ textLabel1_3_2 - <i>Hint:</i> If you don't specify a value here (which is the default), kio-locate will automatically pick slocate, rlocate or locate (in that order). + <i>Hint:</i> If you don't specify a value here (which is the default), tdeio-locate will automatically pick slocate, rlocate or locate (in that order). @@ -196,7 +196,7 @@ textLabel3 - <i>Hint:</i> Do not use -r or -i here. The first will confuse kio-locate, and the latter can be changed through the "Case sensitivity" option. + <i>Hint:</i> Do not use -r or -i here. The first will confuse tdeio-locate, and the latter can be changed through the "Case sensitivity" option. diff --git a/src/locate.protocol b/src/locate.protocol index 5fc528b..9021edd 100644 --- a/src/locate.protocol +++ b/src/locate.protocol @@ -15,4 +15,4 @@ Class=:local URIMode=rawuri # Our very sophisticated documentation -DocPath=kio-locate/index.html +DocPath=tdeio-locate/index.html diff --git a/src/locater.cpp b/src/locater.cpp index 617a417..68c1d75 100644 --- a/src/locater.cpp +++ b/src/locater.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * diff --git a/src/locater.h b/src/locater.h index e855d03..229f3f2 100644 --- a/src/locater.h +++ b/src/locater.h @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * diff --git a/src/locater.protocol b/src/locater.protocol index 3e742b8..a8ff215 100644 --- a/src/locater.protocol +++ b/src/locater.protocol @@ -12,4 +12,4 @@ Description=KDE I/O Slave for the locate command Class=:local # Our very sophisticated documentation -DocPath=kio-locate/index.html +DocPath=tdeio-locate/index.html diff --git a/src/pattern.cpp b/src/pattern.cpp index 52ade3c..6ca3841 100644 --- a/src/pattern.cpp +++ b/src/pattern.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * diff --git a/src/pattern.h b/src/pattern.h index fb4651f..0aac4d5 100644 --- a/src/pattern.h +++ b/src/pattern.h @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * @@ -31,7 +31,7 @@ #include /** - * Regular Expression adapted to the needs of kio-locate. + * Regular Expression adapted to the needs of tdeio-locate. */ class LocateRegExp { diff --git a/src/rlocate.protocol b/src/rlocate.protocol index a49daf9..497996f 100644 --- a/src/rlocate.protocol +++ b/src/rlocate.protocol @@ -15,4 +15,4 @@ Class=:local URIMode=rawuri # Our very sophisticated documentation -DocPath=kio-locate/index.html +DocPath=tdeio-locate/index.html diff --git a/src/tdeio_locate.cpp b/src/tdeio_locate.cpp index 107e737..cedca4a 100644 --- a/src/tdeio_locate.cpp +++ b/src/tdeio_locate.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * @@ -299,7 +299,7 @@ int LocateProtocol::getCollapseDirectoryThreshold() const ///////////////////////////////////////////////////////////////////// -// KIO STUFF +// TDEIO STUFF void LocateProtocol::setUrl(const KURL& url) { @@ -348,7 +348,7 @@ void LocateProtocol::get(const KURL& url) if (m_locater.binaryExists()) { error(TDEIO::ERR_IS_DIRECTORY, TQString()); } else { - TQString html = i18n("

\"%1\" could not be started.

Please note that kio-locate can't be used on its own. You need an additional program for doing searches. Typically this is the command line tool locate that can be found in many distributions by default. You can check if the correct tool is used by looking at the setting \"Locate Binary\".

Besides the mentioned tool locate, kio-locate can use any tool that uses the same syntax. In particular, it was reported to work with slocate and rlocate.").arg(m_locater.binary()); + TQString html = i18n("

\"%1\" could not be started.

Please note that tdeio-locate can't be used on its own. You need an additional program for doing searches. Typically this is the command line tool locate that can be found in many distributions by default. You can check if the correct tool is used by looking at the setting \"Locate Binary\".

Besides the mentioned tool locate, tdeio-locate can use any tool that uses the same syntax. In particular, it was reported to work with slocate and rlocate.").arg(m_locater.binary()); outputHtml(html); } } else if (isConfigRequest()) { @@ -771,7 +771,7 @@ void LocateProtocol::configRequest() KDialogBase::IconList, KDialogBase::Default|KDialogBase::Ok|KDialogBase::Cancel|KDialogBase::Help, KDialogBase::Ok, true); - dialog->setCaption(i18n("Configure - kio-locate")); + dialog->setCaption(i18n("Configure - tdeio-locate")); dialog->setIcon(SmallIcon("find")); dialog->addPage(new KLocateConfigWidget(), i18n("General"), "package_settings"); diff --git a/src/tdeio_locate.h b/src/tdeio_locate.h index 926e7f4..0afcf03 100644 --- a/src/tdeio_locate.h +++ b/src/tdeio_locate.h @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * @@ -26,14 +26,14 @@ /** * \mainpage KDE I/O Slave for the locate command * - * \section intro_sec What is kio-locate? - * kio-locate is a KDE I/O Slave for the locate command. - *

This means that you can use kio-locate by simply typing in konquerors + * \section intro_sec What is tdeio-locate? + * tdeio-locate is a KDE I/O Slave for the locate command. + *

This means that you can use tdeio-locate by simply typing in konquerors * address box. You can e.g. type "locate:index.html" to find all files that * contain "index.html" in their name. - *

There's even more: You can use kio-locate in all TDE applications, that + *

There's even more: You can use tdeio-locate in all TDE applications, that * accept URLs. - *

To find out more about kio-locate and to look for new versions, you + *

To find out more about tdeio-locate and to look for new versions, you * should take a look at * * arminstraub.de. @@ -223,7 +223,7 @@ class LocateProtocol : public TQObject, public TDEIO::SlaveBase /** - * Internally used class to represent a hit as kio-locate will + * Internally used class to represent a hit as tdeio-locate will * report. * * This may either be a path as given by locate or a directory @@ -242,7 +242,7 @@ class LocateItem /** - * Internally used class to represent a directory while kio-locate + * Internally used class to represent a directory while tdeio-locate * gathers data from locate. * * Each directory has a list of files found in just that directory diff --git a/src/tdeio_locate.kcfg b/src/tdeio_locate.kcfg index 6b86e9a..6bda265 100644 --- a/src/tdeio_locate.kcfg +++ b/src/tdeio_locate.kcfg @@ -54,7 +54,7 @@ - Do not use -r or -i here. The first will confuse kio-locate, while the latter can be changed through the caseSensitivity option. + Do not use -r or -i here. The first will confuse tdeio-locate, while the latter can be changed through the caseSensitivity option. diff --git a/templates/cpp b/templates/cpp index 7db1f84..e81a459 100644 --- a/templates/cpp +++ b/templates/cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * diff --git a/templates/h b/templates/h index 7db1f84..e81a459 100644 --- a/templates/h +++ b/templates/h @@ -1,5 +1,5 @@ /*************************************************************************** - * kio-locate: KDE I/O Slave for the locate command * + * tdeio-locate: KDE I/O Slave for the locate command * * * * Copyright (C) 2005 by Tobi Vollebregt * * tobivollebregt@gmail.com * -- cgit v1.2.3