fix english indexation -> indexing

This commit is contained in:
"Jean-Francois Dockes ext:(%22) 2010-07-20 09:48:20 +02:00
parent e5f41aeb05
commit 846bec8a73
18 changed files with 32 additions and 35 deletions

View File

@ -1013,7 +1013,6 @@ void RclConfig::initFrom(const RclConfig& r)
#include <stdio.h>
#include <signal.h>
#include <sys/stat.h>
#include <iostream>
#include <list>

View File

@ -92,7 +92,7 @@ RclConfig *recollinit(RclInitFlags flags,
}
// Make sure the locale is set. This is only for converting file names
// to utf8 for indexation.
// to utf8 for indexing.
setlocale(LC_CTYPE, "");
return config;

View File

@ -394,7 +394,7 @@ FsIndexer::processone(const std::string &fn, const struct stat *stp,
return FsTreeWalker::FtwOk;
}
// File name transcoded to utf8 for indexation.
// File name transcoded to utf8 for indexing.
string charset = m_config->getDefCharset(true);
// If this fails, the file name won't be indexed, no big deal
// Note that we used to do the full path here, but I ended up believing

View File

@ -24,9 +24,6 @@ static char rcsid[] = "@(#$Id: recollindex.cpp,v 1.38 2008-10-14 06:07:42 dockes
#include <stdio.h>
#include <signal.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <iostream>
#include <list>
@ -165,10 +162,10 @@ static const char usage [] =
" Print help\n"
"recollindex [-z] \n"
" Index everything according to configuration file\n"
" -z : reset database before starting indexation\n"
" -z : reset database before starting indexing\n"
#ifdef RCL_MONITOR
"recollindex -m [-w <secs>] -x [-D]\n"
" Perform real time indexation. Don't become a daemon if -D is set.\n"
" Perform real time indexing. Don't become a daemon if -D is set.\n"
" -w sets number of seconds to wait before starting.\n"
#ifndef DISABLE_X11MON
" -x disables exit on end of x11 session\n"

View File

@ -194,7 +194,7 @@
</message>
<message>
<source>.
Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed.</source>
Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed.</source>
<translation>.
Drücken Sie Abbrechen, um die Konfigurationsdatei vor dem Start der Indizierung anzupassen oder OK um mit der Indizierung zu beginnen.</translation>
</message>

View File

@ -193,7 +193,7 @@
</message>
<message>
<source>.
Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed.</source>
Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed.</source>
<translation>Cliquer Annuler pour pouvoir éditer le fichier de configuration avant que l&apos;indexation ne démarre, ou Ok pour continuer.</translation>
</message>
<message>

View File

@ -194,7 +194,7 @@
</message>
<message>
<source>.
Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed.</source>
Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed.</source>
<translation>Clicca &apos;Annulla&apos; se vuoi editare il file di configurazione prima di iniziare l&apos;indicizzazione, oppure &apos;OK&apos; se vuoi procedere.</translation>
</message>
<message>

View File

@ -199,7 +199,7 @@
</message>
<message>
<source>.
Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed.</source>
Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed.</source>
<translation>.
Нажмите &quot;Отменить&quot;, если хотите исправить файл конфигурации до начала индексирования, или &quot;OK&quot; для продолжения.</translation>
</message>

View File

@ -150,7 +150,7 @@
</message>
<message>
<source>.
Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed.</source>
Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed.</source>
<translation>.
İndekseleme başlamadan yapılandırmayı düzenlemek için İptal düğmesine basın ya da Tamam düğmesine basarak işleme izin verin.</translation>
</message>

View File

@ -194,7 +194,7 @@
</message>
<message>
<source>.
Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed.</source>
Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed.</source>
<translation>.
Натисніть Відміна, якщо бажаєте відредагувати конфіґурацію до початку індексування,
чи OK для продовження.</translation>

View File

@ -141,7 +141,7 @@
</message>
<message>
<source>.
Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed.</source>
Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed.</source>
<translation type="unfinished"></translation>
</message>
</context>

View File

@ -73,7 +73,7 @@ void IdxThread::run()
m_interrupted = false;
indexingstatus = IDXTS_NULL;
// We have to make a copy of the config (setKeydir changes
// it during indexation)
// it during indexing)
RclConfig *myconf = new RclConfig(*cnf);
int loglevel;
myconf->setKeyDir("");

View File

@ -359,7 +359,7 @@ void RclMain::initDbOpen()
QString::fromLocal8Bit(rclconfig->getDbDir().c_str()) +
qApp->translate("Main",
".\n"
"Click Cancel if you want to edit the configuration file before indexation starts, or Ok to let it proceed."),
"Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed."),
"Ok", "Cancel", 0, 0)) {
case 0: // Ok: indexing is going to start.

View File

@ -135,7 +135,7 @@ class Db {
/** Remove documents that no longer exist in the file system. This
* depends on the update map, which is built during
* indexation (needUpdate()).
* indexing (needUpdate()).
*
* This should only be called after a full walk of
* the file system, else the update map will not be complete, and

View File

@ -50,7 +50,7 @@ class Doc {
string url;
// Transcoded version of the simple file name for SFN-prefixed
// specific file name indexation
// specific file name indexing
// Index: set by DbIndexer::processone
string utf8fn;

View File

@ -106,20 +106,18 @@
<h2><a name="b_1_13_02">recoll 1.13.02</h2>
<li>Fix stemming which was completely broken in the 1.13
series. The stemming database was not
created at all. Things would sort of work as long as an older stemming
database was around (which is why this was not discovered earlier.</li>
<li>Stemming does not work in the 1.13 series. The stemming
database was not created at all. Things would sort of work as
long as an older stemming database was around (which is why
this was not discovered earlier.</li>
<li>Fix the lyx filter to properly handle embedded white space in
file paths.</li>
<h2><a name="b_1_13_01">recoll 1.13.01 + xapian 1.0.16</a></h2>
<li>The GUI display is completely garbled under
Qt 4.6.1 and newer. This is a Qt bug, and a workaround was put
in place in Recoll 1.13.02 for Qt 4.6.1. If you are using a
newer version and the problem is still there, you can fix the
<li>The GUI display is garbled under Qt 4.6.1 and newer. This is
a Qt bug, and a workaround was put in place in Recoll 1.13.02
for Qt 4.6.1. If you are using a newer version and the problem
is still there, you can fix the
4.6.1 fix to hopefully work with your Qt version: edit
qtgui/rclmain_w.h, around line 37 (there is only one instance),
change:
@ -495,7 +493,7 @@
<li> All directories and files with names beginning with a dot were ignored
by the skippedNames directive in the default recoll.conf file from
older versions (no indexation of mozilla or thunderbird email !). An
older versions (no indexing of mozilla or thunderbird email !). An
upgrade will not fix this (it will not modify an existing
configuration). You need to edit recoll.conf by hand and remove the .*
from skippedNames.</li>

View File

@ -339,7 +339,7 @@
<li> All directories and files with names beginning with a dot were ignored
by the skippedNames directive in the default recoll.conf file from
older versions (no indexation of mozilla or thunderbird email !). An
older versions (no indexing of mozilla or thunderbird email !). An
upgrade will not fix this (it will not modify an existing
configuration). You need to edit recoll.conf by hand and remove the .*
from skippedNames.</li>

View File

@ -35,7 +35,10 @@
<p>Provide a set of configuration defaults so that compilation has a
chance to succeed on unknown systems.</p>
<p>Install icon to the pixmaps directory.</p>
<p><a href="BUGS.html#b_1_13_02">Fixed bugs</a></p>
<p>Fixes stemming, which was broken for all previous 1.13
releases.</p>
<p><a href="BUGS.html#b_1_13_02">Bugs fixed between 1.13.02
and 1.13.04.</a></p>
<h2><a name="1.13.02">1.13.02</a></h2>
<p>This version has a single fix to work around a problem in the
@ -702,9 +705,9 @@
<h2><a name="1.3.3">1.3.3 2006-04-04</a></h2>
<ul>
<li> Implement specific search on file names with wildcard
support. Indexation can optionally process all file names or only those
with mime types supported for normal indexation. UPDATING: you need a
full re-indexation to take advantage of this.
support. Indexing can optionally process all file names or only those
with mime types supported for normal indexing. UPDATING: you need a
full re-indexing to take advantage of this.
<li> Use links and a right-click popup menu to replace confusing use of
mouse clicks and double-clicks inside the result list.
<li> The 'example' configuration files are now used as default, and are not