From d40d47ff97d9a72147075e5e3a2401431654bec0 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Thu, 8 Mar 2012 10:43:24 +0100 Subject: [PATCH] messages updates and doc --- src/doc/man/recollq.1 | 2 +- src/doc/user/usermanual.sgml | 72 ++++-- src/qtgui/i18n/recoll_cs.ts | 458 +++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_de.ts | 456 +++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_es.ts | 477 ++++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_fr.ts | 433 ++++++++++++++++++++++++++++--- src/qtgui/i18n/recoll_it.ts | 454 +++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_lt.ts | 455 +++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_ru.ts | 460 +++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_tr.ts | 454 +++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_uk.ts | 452 +++++++++++++++++++++++++++++++-- src/qtgui/i18n/recoll_xx.ts | 478 ++++++++++++++++++++++++++++++++--- src/qtgui/recoll.pro.in | 1 + src/qtgui/reslist.cpp | 2 +- website/custom.html | 41 ++- website/release-1.17.html | 140 +++++----- 16 files changed, 4496 insertions(+), 339 deletions(-) diff --git a/src/doc/man/recollq.1 b/src/doc/man/recollq.1 index 6651a713..5895fe81 100644 --- a/src/doc/man/recollq.1 +++ b/src/doc/man/recollq.1 @@ -32,7 +32,7 @@ recollq \- command line / standard output Recoll query command. ] [ .B \-n - +<[first-]cnt> ] [ .B \-Q diff --git a/src/doc/user/usermanual.sgml b/src/doc/user/usermanual.sgml index 80797e7b..5bb65df9 100644 --- a/src/doc/user/usermanual.sgml +++ b/src/doc/user/usermanual.sgml @@ -1059,10 +1059,10 @@ fvwm through the Tools menu or through the main toolbar. - The dialog has three parts: + The dialog has four sections: - - The top part allows constructing a query by + + The top section allows constructing a query by combining multiple clauses of different types. Each entry field is configurable for the following modes: @@ -1097,8 +1097,19 @@ fvwm search. - The next part allows filtering the - results by their mime types. + The next section allows filtering the results by + file size. There are two entries for minimum and maximum + size. Enter decimal numbers. You can use suffix multipliers: + k/K, m/M, + g/G, t/T for 1E3, 1E6, + 1E9, 1E12 respectively. + + + + The next section allows filtering the results by their mime + types, or mime categories (ie: media/text/message/etc.). + You can transfer the types between two boxes, to define + which will be included or excluded by the search. The state of the file type selection can be saved as the default (the file type filter will not be activated at program start-up, but the lists will be in the restored @@ -1106,16 +1117,20 @@ fvwm - The bottom part allows restricting the search results to a + The bottom section allows restricting the search results to a sub-tree of the indexed area. You can use the Invert checkbox to search for files not in the sub-tree instead. If you use directory filtering often and on big subsets of the file system, you may think of setting up multiple indexes instead, as the performance may be - better. + better. + You can use relative/partial paths for filtering. Ie, + entering dirA/dirB would match either + /dir1/dirA/dirB/myfile1 or + /dir2/dirA/dirB/someother/myfile2. - + Phrases and Proximity searches @@ -1772,7 +1787,9 @@ fvwm No more detail will be given about the header part (only useful with the WebKit build), if there are restrictions to what you can do, they are beyond this author's HTML/CSS/Javascript - abilities... + abilities... There are a few exemples on the + page about + customising the result list on the &RCL; web site. The paragraph format @@ -1977,20 +1994,39 @@ fvwm recollq has a man page (not installed by default, look in the doc/man directory). The Usage string is as follows: -recollq [-o|-a|-f] <query string> + +recollq: usage: + -P: Show the date span for all the documents present in the index + [-o|-a|-f] [-q] <query string> Runs a recoll query and displays result lines. - Default: will interpret the argument(s) as a query language string - -o Emulate the gui simple search in ANY TERM mode - -a Emulate the gui simple search in ALL TERMS mode - -f Emulate the gui simple search in filename mode + Default: will interpret the argument(s) as a xesam query string + query may be like: + implicit AND, Exclusion, field spec: t1 -t2 title:t3 + OR has priority: t1 OR t2 t3 OR t4 means (t1 OR t2) AND (t3 OR t4) + Phrase: "t1 t2" (needs additional quoting on cmd line) + -o Emulate the GUI simple search in ANY TERM mode + -a Emulate the GUI simple search in ALL TERMS mode + -f Emulate the GUI simple search in filename mode + -q is just ignored (compatibility with the recoll GUI command line) Common options: - -c <configdir> : specify config directory, overriding $RECOLL_CONFDIR + -c <configdir> : specify config directory, overriding $RECOLL_CONFDIR -d also dump file contents - -n <cnt> limit the maximum number of results (0->no limit, default 2000) + -n [first-]<cnt> define the result slice. The default value for [first] + is 0. Without the option, the default max count is 2000. + Use n=0 for no limit -b : basic. Just output urls, no mime types or titles - -m : dump the whole document meta[] array - -S fld : sort by field name + -Q : no result lines, just the processed query and result count + -m : dump the whole document meta[] array for each result + -A : output the document abstracts + -S fld : sort by field <fld> -D : sort descending + -i <dbdir> : additional index, several can be given + -e use url encoding (%xx) for urls + -F <field name list> : output exactly these fields for each result. + The field values are encoded in base64, output in one line and + separated by one space character. This is the recommended format + for use by other programs. Use a normal query with option -m to + see the field names. Sample execution: diff --git a/src/qtgui/i18n/recoll_cs.ts b/src/qtgui/i18n/recoll_cs.ts index a3ca082a..423580fd 100644 --- a/src/qtgui/i18n/recoll_cs.ts +++ b/src/qtgui/i18n/recoll_cs.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other Jiné + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert Obrátit + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + Povolit + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -135,12 +300,12 @@ Could not open database in - Nepodařilo se otevřít databázi v + Nepodařilo se otevřít databázi v . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - . + . Klepněte na tlačítko Zrušit pro úpravu souboru s nastavením, předtím než se začne s rejstříkováním nebo na OK pro započetí s rejstříkováním. @@ -184,7 +349,7 @@ Klepněte na tlačítko Zrušit pro úpravu souboru s nastavením, předtím ne Cannot create temporary directory - Nelze vytvořit dočasný adresář + Nelze vytvořit dočasný adresář Cancel @@ -202,6 +367,14 @@ Klepněte na tlačítko Zrušit pro úpravu souboru s nastavením, předtím ne Can't turn doc into internal representation for Chyba při rejstříkování dokumentu + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -297,6 +470,66 @@ Klepněte na tlačítko Zrušit pro úpravu souboru s nastavením, předtím ne Internetová historie Beagle + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Varování + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -337,7 +570,7 @@ Klepněte na tlačítko Zrušit pro úpravu souboru s nastavením, předtím ne Files - Soubory + Soubory Purge @@ -361,7 +594,7 @@ Klepněte na tlačítko Zrušit pro úpravu souboru s nastavením, předtím ne Can't start query: - Nelze spustit hledání: + Nelze spustit hledání: Bad viewer command line for %1: [%2] @@ -391,7 +624,7 @@ Prověřte soubor mimeconf Indexing interrupted - Rejstříkování přerušeno + Rejstříkování přerušeno Stop &Indexing @@ -491,6 +724,70 @@ Chcete spustit dialog s nastavením? No results found Nenalezeny žádné výsledky + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -640,7 +937,7 @@ Chcete spustit dialog s nastavením? Shift+Home - Shift+Home + Shift+Home Full Screen @@ -674,20 +971,92 @@ Chcete spustit dialog s nastavením? Show results as table Ukázat výsledky jako tabulku + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + RecollModel File name - Dateiname + Dateiname Mime type - Mime Type + Mime Type Date - Datum + Datum + + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File date + + + + Ipath + + + + Keywords + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date and time + @@ -1170,6 +1539,10 @@ Použijte odkaz <b>Ukázat hledání</b>, když máte o výsledku po error retrieving stemming languages Chyba při vyhledání jazyka kmene slova + + Choose + + UIPrefsDialogBase @@ -1605,11 +1978,11 @@ To pomůže při prohledávání velmi velkých textových souborů (např. soub Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Stanovuje formát pro každý odstavec seznamu s výsledky. Použijte qt nahrazení formátu html a printf:<br>%A přehled<br> %D datum<br> %I název obrázku ikony<br> %K klíčová slova (jsou-li)<br> %L odkazy na náhled a úpravy<br> %M mime typ<br> %N počet výsledků<br> %R procento významnosti<br> %S informace o velikosti<br> %T název<br> %U adresa (URL)<br> + Stanovuje formát pro každý odstavec seznamu s výsledky. Použijte qt nahrazení formátu html a printf:<br>%A přehled<br> %D datum<br> %I název obrázku ikony<br> %K klíčová slova (jsou-li)<br> %L odkazy na náhled a úpravy<br> %M mime typ<br> %N počet výsledků<br> %R procento významnosti<br> %S informace o velikosti<br> %T název<br> %U adresa (URL)<br> Result paragraph<br>format string - Řetězec formátu<br>pro výsledky + Řetězec formátu<br>pro výsledky Texts over this size will not be highlighted in preview (too slow). @@ -1761,11 +2134,62 @@ U velkých dokumentů může být pomalé. Use <PRE> tags instead of <BR>to display plain text as html. - Použít značky <PRE> namísto <BR> pro zobrazení prostého textu jako HTML. + Použít značky <PRE> namísto <BR> pro zobrazení prostého textu jako HTML. Lines in PRE text are not folded. Using BR loses indentation. - Řádky v textu PRE nejsou složeny. Použití BR povede ke ztrátě odsazení. + Řádky v textu PRE nejsou složeny. Použití BR povede ke ztrátě odsazení. + + + Style sheet + + + + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage + diff --git a/src/qtgui/i18n/recoll_de.ts b/src/qtgui/i18n/recoll_de.ts index 26be028a..1a0a2ca1 100644 --- a/src/qtgui/i18n/recoll_de.ts +++ b/src/qtgui/i18n/recoll_de.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other andere + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -135,12 +300,12 @@ Could not open database in - Fehler beim Öffnen der Datenbank in + Fehler beim Öffnen der Datenbank in . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - . + . Drücken Sie Abbrechen, um die Konfigurationsdatei vor dem Start der Indizierung anzupassen oder OK um mit der Indizierung zu beginnen. @@ -184,7 +349,7 @@ Drücken Sie Abbrechen, um die Konfigurationsdatei vor dem Start der Indizierung Cannot create temporary directory - Fehler beim Anlegen des temporären Verzeichnisses + Fehler beim Anlegen des temporären Verzeichnisses Cancel @@ -202,6 +367,14 @@ Drücken Sie Abbrechen, um die Konfigurationsdatei vor dem Start der Indizierung Can't turn doc into internal representation for Fehler bei der Indizierung des Dokuments + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -297,6 +470,66 @@ Drücken Sie Abbrechen, um die Konfigurationsdatei vor dem Start der Indizierung + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Warnung + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -337,7 +570,7 @@ Drücken Sie Abbrechen, um die Konfigurationsdatei vor dem Start der Indizierung Files - Dateien + Dateien Purge @@ -361,7 +594,7 @@ Drücken Sie Abbrechen, um die Konfigurationsdatei vor dem Start der Indizierung Can't start query: - Kann die Suche nicht starten: + Kann die Suche nicht starten: Bad viewer command line for %1: [%2] @@ -389,10 +622,6 @@ Please check the mimeconf file Update &Index - - Indexing interrupted - - Stop &Indexing @@ -488,6 +717,70 @@ Do you want to start the preferences dialog ? No results found + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -635,10 +928,6 @@ Do you want to start the preferences dialog ? F11 - - Shift+Home - - Full Screen @@ -671,20 +960,92 @@ Do you want to start the preferences dialog ? Show results as table + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + RecollModel File name - Dateiname + Dateiname Mime type - Mime Type + Mime Type Date - Datum + Datum + + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File date + + + + Ipath + + + + Keywords + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date and time + @@ -1155,6 +1516,10 @@ Use <b>Show Query</b> link when in doubt about result and see manual error retrieving stemming languages Fehler beim Holen der Wortstammsprachen + + Choose + + UIPrefsDialogBase @@ -1585,13 +1950,9 @@ This will help searching very big text files (ie: log files). Reset Reset - - Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - - Result paragraph<br>format string - Formatstring + Formatstring für Ergebnisse @@ -1742,11 +2103,54 @@ May be slow for big documents. - Use <PRE> tags instead of <BR>to display plain text as html. + Style sheet - Lines in PRE text are not folded. Using BR loses indentation. + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage diff --git a/src/qtgui/i18n/recoll_es.ts b/src/qtgui/i18n/recoll_es.ts index da6c9b33..8f01b660 100644 --- a/src/qtgui/i18n/recoll_es.ts +++ b/src/qtgui/i18n/recoll_es.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other otros + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert Invertir + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + Habilitar + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -135,12 +300,12 @@ Could not open database in - No se puede abrir base de datos en + No se puede abrir base de datos en . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - Presione Cancelar si desea editar la configuración antes de indexar, o Ok para proceder. + Presione Cancelar si desea editar la configuración antes de indexar, o Ok para proceder. "history" file is damaged or un(read)writeable, please check or remove it: @@ -155,7 +320,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Cannot create temporary directory - No se puede crear directorio temporal + No se puede crear directorio temporal Cancel @@ -197,6 +362,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Match &Case &Coincidir mayúsculas y minúsculas + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -292,6 +465,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, Historial web Beagle + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Advertencia + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -312,7 +545,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Files - Ficheros + Ficheros Purge @@ -320,7 +553,6 @@ Click Cancel if you want to edit the configuration file before indexing starts, Stemdb - Where does this string appear? I'm not sure of the translation if I see it out of context. Raízdb @@ -333,7 +565,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't start query: - No se puede iniciar la consulta: + No se puede iniciar la consulta: Query results @@ -387,7 +619,7 @@ Por favor revise el fichero mimeconf Indexing interrupted - Indexación interrumpida + Indexación interrumpida Stop &Indexing @@ -486,12 +718,75 @@ Do you want to start the preferences dialog ? No results found No hay resultados + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase Recoll - No traslation needed I presume... Recoll @@ -620,12 +915,10 @@ Do you want to start the preferences dialog ? PgDown - In spanish keyboards the "PgDown" key is marked "AvPág", abbreviation for "Avanzar Página", which means "Go forward a page". AvPág PgUp - In spanish keyboards the "PgUp" key is marked "RePág", abbreviation for "Retroceder Página", which means "Go back a page". RePág @@ -638,7 +931,7 @@ Do you want to start the preferences dialog ? Shift+Home - Mayúsculas+Inicio + Mayúsculas+Inicio Full Screen @@ -650,7 +943,6 @@ Do you want to start the preferences dialog ? sortByDateAsc - Where does this string appear? I'm not sure of the translation if I see it out of context. ordenarPorFechaAsc @@ -659,7 +951,6 @@ Do you want to start the preferences dialog ? sortByDateDesc - Where does this string appear? I'm not sure of the translation if I see it out of context. ordenarPorFechaDesc @@ -674,6 +965,93 @@ Do you want to start the preferences dialog ? Show results as table Mostrar resultados tabulados + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + Nombre de fichero + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + Tipo MIME + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + + + + Date and time + + ResList @@ -755,7 +1133,6 @@ Do you want to start the preferences dialog ? out of at least - Where does this string appear? I'm not sure of the translation if I see it out of context. de por lo menos @@ -913,7 +1290,6 @@ Do you want to start the preferences dialog ? <i>"term1 term2"p</i> : unordered proximity search with default distance.<br> Use <b>Show Query</b> link when in doubt about result and see manual (&lt;F1>) for more detail. - P2M? Ingrese expresión de lenguaje de consulta. Hoja de trucos:<br> <i>term1 term2</i> : 'term1' y 'term2' en cualquier campo.<br> <i>campo:term1</i> : 'term1' en campo 'campo'. <br> @@ -942,7 +1318,6 @@ Use el enlace <b>Mostrar Consulta</b> en caso de duda sobre el resul SSearchBase SSearchBase - Where does this string appear? I'm not sure of the translation if I see it out of context. SSearchBase @@ -1080,7 +1455,6 @@ Use el enlace <b>Mostrar Consulta</b> en caso de duda sobre el resul Doc. / Tot. - Are those abbreviations for "document" and "total"? If so, no translation is needed. Doc./Tot. @@ -1110,6 +1484,10 @@ Use el enlace <b>Mostrar Consulta</b> en caso de duda sobre el resul Select xapian index directory (ie: /home/buddy/.recoll/xapiandb) Seleccione el directorio para el índice Xapian (ej: /home/buddy/.recoll/xapiandb) + + Choose + + ViewAction @@ -1376,11 +1754,11 @@ Esto ayuda con las búsquedas de ficheros de texto muy grandes (ej: ficheros de Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Define el formato para cada párrafo de resultados. Utilice formato qt-html y reemplazos estilo printf:<br>%A Resumen<br> %D Fecha<br> %I Nombre del ícono<br> %K Palabras clave (si existen)<br> %L Enlaces de vista previa y edición<br> %M Tipo MIME<br> %Número de resultado<br> %R Porcentaje de relevancia<br> %S Información de tamaño<br> %T Título<br> %U Url<br> + Define el formato para cada párrafo de resultados. Utilice formato qt-html y reemplazos estilo printf:<br>%A Resumen<br> %D Fecha<br> %I Nombre del ícono<br> %K Palabras clave (si existen)<br> %L Enlaces de vista previa y edición<br> %M Tipo MIME<br> %Número de resultado<br> %R Porcentaje de relevancia<br> %S Información de tamaño<br> %T Título<br> %U Url<br> Result paragraph<br>format string - Texto de formato para<br>párrafo de resultados + Texto de formato para<br>párrafo de resultados Texts over this size will not be highlighted in preview (too slow). @@ -1528,11 +1906,62 @@ Puede ser lento para documentos grandes. Use <PRE> tags instead of <BR>to display plain text as html. - Utilizar etiquetas <PRE> en lugar de <BR> para mostrar texto simple como html. + Utilizar etiquetas <PRE> en lugar de <BR> para mostrar texto simple como html. Lines in PRE text are not folded. Using BR loses indentation. - Líneas en texto PRE no se parten. Al usar BR se pierde indentación. + Líneas en texto PRE no se parten. Al usar BR se pierde indentación. + + + Style sheet + + + + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage + diff --git a/src/qtgui/i18n/recoll_fr.ts b/src/qtgui/i18n/recoll_fr.ts index a3edb4b8..b111167d 100644 --- a/src/qtgui/i18n/recoll_fr.ts +++ b/src/qtgui/i18n/recoll_fr.ts @@ -1,6 +1,6 @@ - + AdvSearch @@ -35,6 +35,10 @@ other autres + + Bad multiplier suffix in size filter + Suffixe multiplicateur incorrect dans un filtre de taille (k/m/g/t) + AdvSearchBase @@ -126,6 +130,169 @@ Invert Inverser + + Minimum size. You can use k/K,m/M,g/G as multipliers + Taille minimum. Vous pouvez utiliser un suffixe multiplicateur: k/K, m/M, g/G. + + + Min. Size + Taille Min. + + + Maximum size. You can use k/K,m/M,g/G as multipliers + Taille Maximum. Vous pouvez utiliser un suffixe multiplicateur: k/K, m/M, g/G. + + + Max. Size + Taille Max. + + + + CronToolW + + Cron Dialog + Dialogue Cron + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + Jours de la semaine (* ou 0-7, 0 ou 7 signifie Dimanche) + + + Hours (* or 0-23) + Heures (* ou 0-23) + + + Minutes (0-59) + Minutes (0-59) + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + Activer + + + Disable + Désactiver + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + Il semble que des entrées créées manuellement existent pour recollindex. Impossible d´éditer le fichier Cron + + + Error installing cron entry. Bad syntax in fields ? + Erreur durant l'installation de l'entrée cron. Mauvaise syntaxe des champs ? + + + + EditDialog + + Dialog + Dialogue + + + + FirstIdxDialog + + First indexing setup + Paramétrage de la première indexation + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + Configuration de l'indexation + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + Vous pourrez ajuster les répertoires que vous voulez indexer, et d'autres paramètres comme les schémas de noms ou chemins de fichiers exclus, les jeux de caractères par défaut, etc. + + + Indexing schedule + Planning de l'indexation + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + Vous pourrez choisir entre l'indexation à intervalles fixes ou au fil de l'eau, et définir un planning pour la première (basé sur l'utilitaire cron). + + + Start indexing now + Démarrer l'indexation maintenant + + + + IdxSchedW + + Index scheduling setup + Paramétrage du planning d'indexation + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + Planning Cron + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + Le dialogue vous permettra de déterminer à quelle heure l'indexation devra démarrer et installera une entrée crontab. + + + Real time indexing start up + Démarrage de l'indexation au fil de l'eau + + + Decide if real time indexing will be started when you log in (only for the default index). + Déterminer si l'indexation au fil de l'eau démarre quand vous vous connectez (pour l'index par défaut). + + + + ListDialog + + Dialog + Dialogue + + + GroupBox + GroupBox + Main @@ -135,12 +302,12 @@ Could not open database in - Impossible d'ouvrir la base dans + Impossible d'ouvrir la base dans . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - Cliquer Annuler pour pouvoir éditer le fichier de configuration avant que l'indexation ne démarre, ou Ok pour continuer. + Cliquer Annuler pour pouvoir éditer le fichier de configuration avant que l'indexation ne démarre, ou Ok pour continuer. Configuration problem (dynconf @@ -183,7 +350,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Cannot create temporary directory - Impossible de créer le répertoire temporaire + Impossible de créer le répertoire temporaire Cancel @@ -201,6 +368,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't turn doc into internal representation for Impossible de traduire le document en représentation interne pour + + Cannot create temporary directory: + Impossible de créer un répertoire temporaire + + + Error while loading file + Erreur de chargement du fichier + PreviewTextEdit @@ -296,6 +471,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, Queue Beagle + + RTIToolW + + Real time indexing automatic start + Démarrage automatique de l'indexation au fil de l'eau + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + Démarrer le démon d'indexation quand je me connecte. + + + Also start indexing daemon right now. + Également démarrer le démon maintenant. + + + Replacing: + Remplacement de: + + + Replacing file + Remplacement du fichier + + + Can't create: + Impossible de créer: + + + Warning + Attention + + + Could not execute recollindex + Impossible d'exécuter recollindex + + + Deleting: + Effacement: + + + Deleting file + Effacement du fichier + + + Removing autostart + Enlèvement de l'autostart + + + Autostart file deleted. Kill current process too ? + Fichier autostart détruit. Arrêter le process en cours ? + + RclMain @@ -336,7 +571,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Files - Fichiers + Fichiers Purge @@ -360,7 +595,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't start query: - Impossible de démarrer la recherche: + Impossible de démarrer la recherche: Bad viewer command line for %1: [%2] @@ -390,7 +625,7 @@ Vérifier le fichier mimeconf Indexing interrupted - Indexation interrompue + Indexation interrompue Stop &Indexing @@ -498,6 +733,70 @@ Voulez vous démarrer le dialogue de préférences ? No results found Aucun résultat trouvé + + None + Rien + + + Updating + Mise à jour + + + Done + Fini + + + Monitor + Moniteur + + + Indexing failed + L'indexation a échoué + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + Le processus d'indexation en cours n'a pas été démarré depuis cette interface. Cliquer Ok pour le tuer quand même, ou Annuler pour le laisser tranquille + + + Erasing index + Effacement de l'index + + + Reset the index and start from scratch ? + Effacer l'index et redémarrer de zéro ? + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + Requête en cours.<br>En raison de restrictions internes, <br>annuler terminera l'exécution du programme + + + Error + Erreur + + + Index not open + Index pas ouvert + + + Index query error + Erreur de la recherche sur l'index + + + Indexed Mime Types + Types MIME indexés + + + Content has been indexed for these mime types: + Du contenu a été indexé pour ces types MIME: + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + Index pas à jour pour ce fichier. Risque d'afficher une entrée incorrecte. Cliquer Ok pour mettre à jour l'index pour ce fichier, puis redémarrer la requête quand l'indexation est terminée. Sinon, Annuler. + + + Can't update index: indexer running + Impossible de mettre à jour l'index: un indexeur est déjà actif + RclMainBase @@ -649,10 +948,6 @@ Voulez vous démarrer le dialogue de préférences ? F11 F11 - - Shift+Home - - Full Screen Plein écran @@ -685,76 +980,92 @@ Voulez vous démarrer le dialogue de préférences ? Show results as table Afficher les résultats en tableau + + &Rebuild index + &Reconstruire l'index + + + &Show indexed types + &Afficher les types indexés + + + Shift+PgUp + Shift+PgUp + + + &Indexing schedule + &Planning d'indexation + RecollModel Abstract - Extrait + Extrait Author - Auteur + Auteur Document size - Taille document + Taille document Document date - Date document + Date document File size - Taille fichier + Taille fichier File name - Nom de fichier + Nom de fichier File date - Date fichier + Date fichier Ipath - Ipath + Ipath Keywords - Mots clef + Mots clef Mime type - Type Mime + Type Mime Original character set - Jeu de caractères d'origine + Jeu de caractères d'origine Relevancy rating - Pertinence + Pertinence Title - Titre + Titre URL - URL + URL Mtime - Mtime + Mtime Date - Date + Date Date and time - Date et heure + Date et heure @@ -1253,6 +1564,10 @@ Utiliser le lien <b>Afficher la requête en détail</b> en cas de do error retrieving stemming languages Impossible de former la liste des langues pour l'expansion grammaticale + + Choose + Choisir + UIPrefsDialogBase @@ -1754,11 +2069,11 @@ Ceci diminue les ressources consommées par l'indexation et aide le chargem Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Definit le format des paragraphes de la liste de resultats. Utilise le format html qt et des directives de substitution de type printf:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> + Definit le format des paragraphes de la liste de resultats. Utilise le format html qt et des directives de substitution de type printf:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> Result paragraph<br>format string - Chaîne de formatage<br>des paragraphes résultats + Chaîne de formatage<br>des paragraphes résultats Texts over this size will not be highlighted in preview (too slow). @@ -1910,11 +2225,65 @@ Peut ralentir l'affichage si les documents sont gros. Use <PRE> tags instead of <BR>to display plain text as html. - Utilise des balises <PRE> au lieu de <BR> pour afficher du texte brut en html. + Utilise des balises <PRE> au lieu de <BR> pour afficher du texte brut en html. Lines in PRE text are not folded. Using BR loses indentation. - Les lignes de text brut <PRE> ne sont pas replies (scroll horizontal). L'utilisation de balises <BR> ne preserve pas l'indentation. + Les lignes de text brut <PRE> ne sont pas replies (scroll horizontal). L'utilisation de balises <BR> ne preserve pas l'indentation. + + + Style sheet + Feuille de style + + + Opens a dialog to select the style sheet file + Ouvre un dialogue pour choisir un fichier feuille de style + + + Choose + Choisir + + + Resets the style sheet to default + Restore la valeur par défaut pour la feuille de style + + + Lines in PRE text are not folded. Using BR loses some indentation. + Les lignes dans des sections PRE ne sont pas justifiées. Using BR perd une partie de l'indentation. + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + Utiliser des tags <PRE> au lieu de <BR> pour affichier du texte non formaté en html dans la prévisualisation + + + Result List + Liste de résultats + + + Edit result paragraph format string + Editer le format du paragraphe de résultat + + + Edit result page html header insert + Editer le fragment à insérer dans l'en-tête HTML + + + Date format (strftime(3)) + Format de date (strftime(3)) + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + Seuil de fréquence (pourcentage) au delà duquel les termes ne seront pas utilisés. +Les phrases contenant des termes trop fréquents posent des problèmes de performance. +Les termes ignorés augmentent la distance de phrase, et réduisent l'efficacité de la fonction de recherche de phrase automatique. +La valeur par défaut est 2% + + + Autophrase term frequency threshold percentage + Seuil de fréquence de terme (pourcentage) pour la génération automatique de phrases diff --git a/src/qtgui/i18n/recoll_it.ts b/src/qtgui/i18n/recoll_it.ts index ac2ee067..3994b9b1 100644 --- a/src/qtgui/i18n/recoll_it.ts +++ b/src/qtgui/i18n/recoll_it.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other altri + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -135,12 +300,12 @@ Could not open database in - Impossibile aprire il database in + Impossibile aprire il database in . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - Clicca 'Annulla' se vuoi editare il file di configurazione prima di iniziare l'indicizzazione, oppure 'OK' se vuoi procedere. + Clicca 'Annulla' se vuoi editare il file di configurazione prima di iniziare l'indicizzazione, oppure 'OK' se vuoi procedere. Configuration problem (dynconf @@ -183,7 +348,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Cannot create temporary directory - Impossibile creare directory temporanea + Impossibile creare directory temporanea Cancel @@ -201,6 +366,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't turn doc into internal representation for Impossibile tradurre il documento per la rappresentazione interna + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -296,6 +469,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Attenzione + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -336,7 +569,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Files - Files + Files Purge @@ -360,7 +593,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't start query: - Non posso iniziare la ricerca: + Non posso iniziare la ricerca: Bad viewer command line for %1: [%2] @@ -388,10 +621,6 @@ Verifica il file mimeconf Update &Index - - Indexing interrupted - - Stop &Indexing @@ -487,6 +716,70 @@ Do you want to start the preferences dialog ? No results found + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -634,10 +927,6 @@ Do you want to start the preferences dialog ? F11 - - Shift+Home - - Full Screen @@ -670,20 +959,92 @@ Do you want to start the preferences dialog ? Show results as table + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + RecollModel File name - Nome file + Nome file Mime type - Tipo MIME + Tipo MIME Date - Data + Data + + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File date + + + + Ipath + + + + Keywords + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date and time + @@ -1155,6 +1516,10 @@ Use <b>Show Query</b> link when in doubt about result and see manual error retrieving stemming languages Impossibile formare la lista delle lingue per l'espansione grammaticale + + Choose + + UIPrefsDialogBase @@ -1606,11 +1971,11 @@ This will help searching very big text files (ie: log files). Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Definisce il formato per ogni paragrafo dell'elenco dei risultati. Usare il formato qt html e le sostituzioni tipo printf:<br>%A Riassunto<br> %D Data<br> %I Icona<br> %K Parole chiave (se esistono)<br> %L Link per anteprima e modifica<br> %M Tipo MIME<br> %N Numero del risultato<br> %R Percentuale di rilevanza<br> %S Informazioni sulla dimensione<br> %T Titolo<br> %U Url<br> + Definisce il formato per ogni paragrafo dell'elenco dei risultati. Usare il formato qt html e le sostituzioni tipo printf:<br>%A Riassunto<br> %D Data<br> %I Icona<br> %K Parole chiave (se esistono)<br> %L Link per anteprima e modifica<br> %M Tipo MIME<br> %N Numero del risultato<br> %R Percentuale di rilevanza<br> %S Informazioni sulla dimensione<br> %T Titolo<br> %U Url<br> Result paragraph<br>format string - Stringa di formattazione<br>dei risultati + Stringa di formattazione<br>dei risultati Texts over this size will not be highlighted in preview (too slow). @@ -1761,11 +2126,54 @@ Puo' essere lento per grossi documenti.. - Use <PRE> tags instead of <BR>to display plain text as html. + Style sheet - Lines in PRE text are not folded. Using BR loses indentation. + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage diff --git a/src/qtgui/i18n/recoll_lt.ts b/src/qtgui/i18n/recoll_lt.ts index b84488a6..dd2d0f1f 100644 --- a/src/qtgui/i18n/recoll_lt.ts +++ b/src/qtgui/i18n/recoll_lt.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other kita + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -139,12 +304,7 @@ Could not open database in - Nepavyko atidaryti duomenų bazės - - - . -Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - + Nepavyko atidaryti duomenų bazės "history" file is damaged or un(read)writeable, please check or remove it: @@ -159,7 +319,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Cannot create temporary directory - Nepavyksta sukurti laikinos direktorijos + Nepavyksta sukurti laikinos direktorijos Cancel @@ -201,6 +361,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Match &Case Atitaikyti &Atvejį + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -296,6 +464,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, Beagle tinklo istorija + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Įspėjimas + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -316,7 +544,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Files - Failai + Failai Purge @@ -336,7 +564,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't start query: - Nepavyksta pradėti vykdyti užklausą: + Nepavyksta pradėti vykdyti užklausą: Query results @@ -390,7 +618,7 @@ Prašome patikrinti mimeconf bylą Indexing interrupted - indeksavimas pertrauktas + indeksavimas pertrauktas Stop &Indexing @@ -498,6 +726,70 @@ Ar norėtumete iššaukti nustatymų langą? No results found + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -645,10 +937,6 @@ Ar norėtumete iššaukti nustatymų langą? F11 - - Shift+Home - - Full Screen @@ -681,20 +969,92 @@ Ar norėtumete iššaukti nustatymų langą? Show results as table + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + RecollModel File name - Bylos vardas + Bylos vardas Mime type - Mime tipas + Mime tipas Date - Data + Data + + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File date + + + + Ipath + + + + Keywords + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date and time + @@ -1173,6 +1533,10 @@ Use <b>Show Query</b> link when in doubt about result and see manual Select xapian index directory (ie: /home/buddy/.recoll/xapiandb) Pasirinkite Xapian indekso direktoriją (pav: /home/buddy/.recoll/xapiandb) + + Choose + + UIPrefsDialogBase @@ -1659,11 +2023,11 @@ This will help searching very big text files (ie: log files). Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Apibūdina kiekvieno rezultatų įrašo formatą:<br>%A Santrauka<br> %D Data<br> %I Ikona<br> %K Raktiniai žodžiai (jei yra)<br> %L Peržiūros ir Redagavimo nuorodos<br> %M Mime tipai<br> %N Rezultų skaičius<br> %R Tinkamumas procentais<br> %S Informacija apie dydį<br> %T Pavadinimas<br> %U Url<br> + Apibūdina kiekvieno rezultatų įrašo formatą:<br>%A Santrauka<br> %D Data<br> %I Ikona<br> %K Raktiniai žodžiai (jei yra)<br> %L Peržiūros ir Redagavimo nuorodos<br> %M Mime tipai<br> %N Rezultų skaičius<br> %R Tinkamumas procentais<br> %S Informacija apie dydį<br> %T Pavadinimas<br> %U Url<br> Result paragraph<br>format string - Rezultatų paragrafo<br>formatas + Rezultatų paragrafo<br>formatas Texts over this size will not be highlighted in preview (too slow). @@ -1813,11 +2177,54 @@ Didelės apimties dokumentams gali lėtai veikti. - Use <PRE> tags instead of <BR>to display plain text as html. + Style sheet - Lines in PRE text are not folded. Using BR loses indentation. + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage diff --git a/src/qtgui/i18n/recoll_ru.ts b/src/qtgui/i18n/recoll_ru.ts index ea4314ea..1f95092a 100644 --- a/src/qtgui/i18n/recoll_ru.ts +++ b/src/qtgui/i18n/recoll_ru.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other иное + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert Обратить + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + Включить + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -135,12 +300,12 @@ Could not open database in - Невозможно открыть БД в + Невозможно открыть БД в . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - . + . Нажмите "Отменить", если хотите исправить файл конфигурации до начала индексирования, или "OK" для продолжения. @@ -184,7 +349,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Cannot create temporary directory - Невозможно создать временный каталог + Невозможно создать временный каталог Cancel @@ -202,6 +367,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't turn doc into internal representation for Невозможно сконвертировать документ во внутреннее представление + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -297,6 +470,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, Web-история Beagle + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Осторожно + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -337,7 +570,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Files - Файлы + Файлы Purge @@ -387,7 +620,7 @@ Please check the mimeconf file Indexing interrupted - Индексирование прервано + Индексирование прервано Stop &Indexing @@ -395,7 +628,7 @@ Please check the mimeconf file Can't start query: - Ошибка старта запроса: + Ошибка старта запроса: All @@ -499,6 +732,70 @@ Do you want to start the preferences dialog ? No results found Поиск не дал результатов + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -646,10 +943,6 @@ Do you want to start the preferences dialog ? F11 - - Shift+Home - - Full Screen Во весь экран @@ -682,20 +975,92 @@ Do you want to start the preferences dialog ? Show results as table Показать результаты в виде таблицы + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + RecollModel File name - Имя файла + Имя файла Mime type - Тип MIME + Тип MIME Date - Дата + Дата + + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File date + + + + Ipath + + + + Keywords + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date and time + @@ -1182,6 +1547,10 @@ Use <b>Show Query</b> link when in doubt about result and see manual error retrieving stemming languages ошибка получения списка языков + + Choose + + UIPrefsDialogBase @@ -1671,11 +2040,11 @@ This will help searching very big text files (ie: log files). Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Определяет формат каждого блока списка результатов. Используйте html-формат qt и замены в стиле printf:<br>%A аннотация<br> %D дата<br> %I название пиктограммы<br> %K ключевые слова (если есть)<br> %L ссылки предварительного просмотра и редактирования<br> %M тип MIME<br> %N количество результатов<br> %R релевантность<br> %S размер<br> %T заголовок<br> %U URL<br> + Определяет формат каждого блока списка результатов. Используйте html-формат qt и замены в стиле printf:<br>%A аннотация<br> %D дата<br> %I название пиктограммы<br> %K ключевые слова (если есть)<br> %L ссылки предварительного просмотра и редактирования<br> %M тип MIME<br> %N количество результатов<br> %R релевантность<br> %S размер<br> %T заголовок<br> %U URL<br> Result paragraph<br>format string - Строка форматирования<br>блока результатов + Строка форматирования<br>блока результатов Texts over this size will not be highlighted in preview (too slow). @@ -1827,11 +2196,62 @@ May be slow for big documents. Use <PRE> tags instead of <BR>to display plain text as html. - Использовать тэги <PRE> вместо <BR>для отображения простого текста как html. + Использовать тэги <PRE> вместо <BR>для отображения простого текста как html. Lines in PRE text are not folded. Using BR loses indentation. - Строки в PRE-тексте не переносятся. При использовании BR теряются отступы. + Строки в PRE-тексте не переносятся. При использовании BR теряются отступы. + + + Style sheet + + + + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage + diff --git a/src/qtgui/i18n/recoll_tr.ts b/src/qtgui/i18n/recoll_tr.ts index 25aef09d..05c539fe 100644 --- a/src/qtgui/i18n/recoll_tr.ts +++ b/src/qtgui/i18n/recoll_tr.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other diğer + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -139,12 +304,12 @@ Could not open database in - Veritabanı açılamadı + Veritabanı açılamadı . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - . + . İ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. @@ -160,7 +325,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Cannot create temporary directory - Geçici dizin oluşturulamadı + Geçici dizin oluşturulamadı Cancel @@ -202,6 +367,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Match &Case Eşleşme Şa&rtı + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -297,6 +470,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Uyarı + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -317,7 +550,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Files - Dosyalar + Dosyalar Purge @@ -337,7 +570,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't start query: - Sorgu başlatılamadı: + Sorgu başlatılamadı: Query results @@ -389,10 +622,6 @@ Lütfen mimeconf dosyasını kontrol edin Update &Index - - Indexing interrupted - - Stop &Indexing @@ -488,6 +717,70 @@ Do you want to start the preferences dialog ? No results found + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -635,10 +928,6 @@ Do you want to start the preferences dialog ? F11 - - Shift+Home - - Full Screen @@ -671,20 +960,92 @@ Do you want to start the preferences dialog ? Show results as table + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + RecollModel File name - Dosya adı + Dosya adı Mime type - Mime Tipi + Mime Tipi Date - Tarih + Tarih + + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File date + + + + Ipath + + + + Keywords + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date and time + @@ -1155,6 +1516,10 @@ Use <b>Show Query</b> link when in doubt about result and see manual Select xapian index directory (ie: /home/buddy/.recoll/xapiandb) Xapian indeks dizinini seç (/home/kullanıcı_adınız/.recoll/xapiandb gibi.) + + Choose + + UIPrefsDialogBase @@ -1606,11 +1971,11 @@ This will help searching very big text files (ie: log files). Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Tüm sonuç listesi paragraflarını tanımlar. Qt html biçimini ve printf benzeri yer değiştiricileri kullanın:<br>%A Özet<br> %D Tarih<br> %I Simge resminin adı<br> %K Anahtar sözcükler (eğer varsa)<br> %L Önizle ve Düzenle bağlantıları<br> %M Mime tipi<br> %N Sonuç sayısı<br> %R Uyum yüzdesi<br> %S Boyut bilgileri<br> %T Başlık<br> %U Url<br> + Tüm sonuç listesi paragraflarını tanımlar. Qt html biçimini ve printf benzeri yer değiştiricileri kullanın:<br>%A Özet<br> %D Tarih<br> %I Simge resminin adı<br> %K Anahtar sözcükler (eğer varsa)<br> %L Önizle ve Düzenle bağlantıları<br> %M Mime tipi<br> %N Sonuç sayısı<br> %R Uyum yüzdesi<br> %S Boyut bilgileri<br> %T Başlık<br> %U Url<br> Result paragraph<br>format string - Sonuç paragrafı<br>biçimlendirme ifadesi + Sonuç paragrafı<br>biçimlendirme ifadesi Texts over this size will not be highlighted in preview (too slow). @@ -1761,11 +2126,54 @@ Büyük boyutlu belgelerde yavaş olabilir. - Use <PRE> tags instead of <BR>to display plain text as html. + Style sheet - Lines in PRE text are not folded. Using BR loses indentation. + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage diff --git a/src/qtgui/i18n/recoll_uk.ts b/src/qtgui/i18n/recoll_uk.ts index 28ec6513..1826fdab 100644 --- a/src/qtgui/i18n/recoll_uk.ts +++ b/src/qtgui/i18n/recoll_uk.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other інше + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -135,12 +300,12 @@ Could not open database in - Не можу відкрити базу даних в + Не можу відкрити базу даних в . Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - . + . Натисніть Відміна, якщо бажаєте відредагувати конфіґурацію до початку індексування, чи OK для продовження. @@ -177,7 +342,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Cannot create temporary directory - Не можу створити тимчасову теку + Не можу створити тимчасову теку Cancel @@ -203,6 +368,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Can't turn doc into internal representation for Неможливо перетворити документ на внутрішнє представлення для + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -298,6 +471,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + Попередження + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -338,7 +571,7 @@ Click Cancel if you want to edit the configuration file before indexing starts, Files - Файли + Файли Purge @@ -388,7 +621,7 @@ Please check the mimeconf file Indexing interrupted - Індексування перервано + Індексування перервано Stop &Indexing @@ -396,7 +629,7 @@ Please check the mimeconf file Can't start query: - Неможливо почати запит: + Неможливо почати запит: All @@ -499,6 +732,70 @@ Do you want to start the preferences dialog ? No results found + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -646,10 +943,6 @@ Do you want to start the preferences dialog ? F11 - - Shift+Home - - Full Screen @@ -682,20 +975,92 @@ Do you want to start the preferences dialog ? Show results as table + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + RecollModel File name - Ім'я файлу + Ім'я файлу Mime type - Тип MIME + Тип MIME Date - Дата + Дата + + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File date + + + + Ipath + + + + Keywords + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date and time + @@ -1170,6 +1535,10 @@ Use <b>Show Query</b> link when in doubt about result and see manual error retrieving stemming languages помилка здобування списку мов + + Choose + + UIPrefsDialogBase @@ -1641,11 +2010,11 @@ This will help searching very big text files (ie: log files). Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - Визначає формат для кожного блоку списку результатів. Використовуйте html-формат qt та схожі на printf заміни:<br>%A анотація<br> %D дата<br> %I назва піктограми<br> %K ключові слова (якщо є)<br> %L посилання перегляду та редагування<br> %M тип MIME<br> %N кількість результатів<br> %R релевантність<br> %S розмір<br> %T назва<br> %U URL<br> + Визначає формат для кожного блоку списку результатів. Використовуйте html-формат qt та схожі на printf заміни:<br>%A анотація<br> %D дата<br> %I назва піктограми<br> %K ключові слова (якщо є)<br> %L посилання перегляду та редагування<br> %M тип MIME<br> %N кількість результатів<br> %R релевантність<br> %S розмір<br> %T назва<br> %U URL<br> Result paragraph<br>format string - Рядок форматування<br>блоку результатів + Рядок форматування<br>блоку результатів Texts over this size will not be highlighted in preview (too slow). @@ -1796,11 +2165,54 @@ May be slow for big documents. - Use <PRE> tags instead of <BR>to display plain text as html. + Style sheet - Lines in PRE text are not folded. Using BR loses indentation. + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage diff --git a/src/qtgui/i18n/recoll_xx.ts b/src/qtgui/i18n/recoll_xx.ts index 393ec88d..ed51a722 100644 --- a/src/qtgui/i18n/recoll_xx.ts +++ b/src/qtgui/i18n/recoll_xx.ts @@ -1,6 +1,4 @@ - - - + AdvSearch @@ -35,6 +33,10 @@ other + + Bad multiplier suffix in size filter + + AdvSearchBase @@ -126,6 +128,169 @@ Invert + + Minimum size. You can use k/K,m/M,g/G as multipliers + + + + Min. Size + + + + Maximum size. You can use k/K,m/M,g/G as multipliers + + + + Max. Size + + + + + CronToolW + + Cron Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> batch indexing schedule (cron) </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each field can contain a wildcard (*), a single numeric value, comma-separated lists (1,3,5) and ranges (1-7). More generally, the fields will be used <span style=" font-style:italic;">as is</span> inside the crontab file, and the full crontab syntax can be used, see crontab(5).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br />For example, entering <span style=" font-family:'Courier New,courier';">*</span> in <span style=" font-style:italic;">Days, </span><span style=" font-family:'Courier New,courier';">12,19</span> in <span style=" font-style:italic;">Hours</span> and <span style=" font-family:'Courier New,courier';">15</span> in <span style=" font-style:italic;">Minutes</span> would start recollindex every day at 12:15 AM and 7:15 PM</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A schedule with very frequent activations is probably less efficient than real time indexing.</p></body></html> + + + + Days of week (* or 0-7, 0 or 7 is Sunday) + + + + Hours (* or 0-23) + + + + Minutes (0-59) + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <span style=" font-style:italic;">Disable</span> to stop automatic batch indexing, <span style=" font-style:italic;">Enable</span> to activate it, <span style=" font-style:italic;">Cancel</span> to change nothing.</p></body></html> + + + + Enable + + + + Disable + + + + It seems that manually edited entries exist for recollindex, cannot edit crontab + + + + Error installing cron entry. Bad syntax in fields ? + + + + + EditDialog + + Dialog + + + + + FirstIdxDialog + + First indexing setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">It appears that the index for this configuration does not exist.</span><br /><br />If you just want to index your home directory with a set of reasonable defaults, press the <span style=" font-style:italic;">Start indexing now</span> button. You will be able to adjust the details later. </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If you want more control, use the following links to adjust the indexing configuration and schedule.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These tools can be accessed later from the <span style=" font-style:italic;">Preferences</span> menu.</p></body></html> + + + + Indexing configuration + + + + This will let you adjust the directories you want to index, and other parameters like excluded file paths or names, default character sets, etc. + + + + Indexing schedule + + + + This will let you chose between batch and real-time indexing, and set up an automatic schedule for batch indexing (using cron). + + + + Start indexing now + + + + + IdxSchedW + + Index scheduling setup + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can run permanently, indexing files as they change, or run at discrete intervals. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Reading the manual may help you to decide between these approaches (press F1). </p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This tool can help you set up a schedule to automate batch indexing runs, or start real time indexing when you log in (or both, which rarely makes sense). </p></body></html> + + + + Cron scheduling + + + + The tool will let you decide at what time indexing should run and will install a crontab entry. + + + + Real time indexing start up + + + + Decide if real time indexing will be started when you log in (only for the default index). + + + + + ListDialog + + Dialog + + + + GroupBox + + Main @@ -133,15 +298,6 @@ No db directory in configuration - - Could not open database in - - - - . -Click Cancel if you want to edit the configuration file before indexing starts, or Ok to let it proceed. - - "history" file is damaged or un(read)writeable, please check or remove it: @@ -153,10 +309,6 @@ Click Cancel if you want to edit the configuration file before indexing starts, Close Tab - - Cannot create temporary directory - - Cancel @@ -197,6 +349,14 @@ Click Cancel if you want to edit the configuration file before indexing starts, Match &Case + + Cannot create temporary directory: + + + + Error while loading file + + PreviewTextEdit @@ -292,6 +452,66 @@ Click Cancel if you want to edit the configuration file before indexing starts, + + RTIToolW + + Real time indexing automatic start + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Recoll</span> indexing can be set up to run as a daemon, updating the index as files change, in real time. You gain an always up to date index, but system resources are used permanently.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + + + Start indexing daemon with my desktop session. + + + + Also start indexing daemon right now. + + + + Replacing: + + + + Replacing file + + + + Can't create: + + + + Warning + + + + Could not execute recollindex + + + + Deleting: + + + + Deleting file + + + + Removing autostart + + + + Autostart file deleted. Kill current process too ? + + + RclMain @@ -310,10 +530,6 @@ Click Cancel if you want to edit the configuration file before indexing starts, Indexing in progress: - - Files - - Purge @@ -330,10 +546,6 @@ Click Cancel if you want to edit the configuration file before indexing starts, Unknown - - Can't start query: - - Query results @@ -383,10 +595,6 @@ Please check the mimeconf file Update &Index - - Indexing interrupted - - Stop &Indexing @@ -482,6 +690,70 @@ Do you want to start the preferences dialog ? No results found + + None + + + + Updating + + + + Done + + + + Monitor + + + + Indexing failed + + + + The current indexing process was not started from this interface. Click Ok to kill it anyway, or Cancel to leave it alone + + + + Erasing index + + + + Reset the index and start from scratch ? + + + + Query in progress.<br>Due to limitations of the indexing library,<br>cancelling will exit the program + + + + Error + + + + Index not open + + + + Index query error + + + + Indexed Mime Types + + + + Content has been indexed for these mime types: + + + + Index not up to date for this file. Refusing to risk showing the wrong entry. Click Ok to update the index for this file, then re-run the query when indexing is done. Else, Cancel. + + + + Can't update index: indexer running + + RclMainBase @@ -629,10 +901,6 @@ Do you want to start the preferences dialog ? F11 - - Shift+Home - - Full Screen @@ -665,6 +933,93 @@ Do you want to start the preferences dialog ? Show results as table + + &Rebuild index + + + + &Show indexed types + + + + Shift+PgUp + + + + &Indexing schedule + + + + + RecollModel + + Abstract + + + + Author + + + + Document size + + + + Document date + + + + File size + + + + File name + + + + File date + + + + Ipath + + + + Keywords + + + + Mime type + + + + Original character set + + + + Relevancy rating + + + + Title + + + + URL + + + + Mtime + + + + Date + + + + Date and time + + ResList @@ -1084,6 +1439,10 @@ Use <b>Show Query</b> link when in doubt about result and see manual Select xapian index directory (ie: /home/buddy/.recoll/xapiandb) + + Choose + + ViewAction @@ -1347,14 +1706,6 @@ This will help searching very big text files (ie: log files). Reset - - Defines the format for each result list paragraph. Use qt html format and printf-like replacements:<br>%A Abstract<br> %D Date<br> %I Icon image name<br> %K Keywords (if any)<br> %L Preview and Edit links<br> %M Mime type<br> %N Result number<br> %R Relevance percentage<br> %S Size information<br> %T Title<br> %U Url<br> - - - - Result paragraph<br>format string - - Texts over this size will not be highlighted in preview (too slow). @@ -1498,11 +1849,54 @@ May be slow for big documents. - Use <PRE> tags instead of <BR>to display plain text as html. + Style sheet - Lines in PRE text are not folded. Using BR loses indentation. + Opens a dialog to select the style sheet file + + + + Choose + + + + Resets the style sheet to default + + + + Lines in PRE text are not folded. Using BR loses some indentation. + + + + Use <PRE> tags instead of <BR>to display plain text as html in preview. + + + + Result List + + + + Edit result paragraph format string + + + + Edit result page html header insert + + + + Date format (strftime(3)) + + + + Frequency percentage threshold over which we do not use terms inside autophrase. +Frequent terms are a major performance issue with phrases. +Skipped terms augment the phrase slack, and reduce the autophrase efficiency. +The default value is 2 (percent). + + + + Autophrase term frequency threshold percentage diff --git a/src/qtgui/recoll.pro.in b/src/qtgui/recoll.pro.in index fe84b1ac..abffacfa 100644 --- a/src/qtgui/recoll.pro.in +++ b/src/qtgui/recoll.pro.in @@ -98,6 +98,7 @@ contains( UNAME, SunOS ) { } TRANSLATIONS = \ + i18n/recoll_cs.ts \ i18n/recoll_de.ts \ i18n/recoll_es.ts \ i18n/recoll_fr.ts \ diff --git a/src/qtgui/reslist.cpp b/src/qtgui/reslist.cpp index b747fc3c..bc06cf2f 100644 --- a/src/qtgui/reslist.cpp +++ b/src/qtgui/reslist.cpp @@ -131,7 +131,7 @@ bool QtGuiResListPager::append(const string& data, int docnum, m_parent->m_pageParaToReldocnums[block] = docnum; } #else - QString sdoc = QString("
").arg(docnum); + QString sdoc = QString("
").arg(docnum); m_parent->append(sdoc); m_parent->append(QString::fromUtf8(data.c_str())); m_parent->append("
"); diff --git a/website/custom.html b/website/custom.html index 0108d516..dc652b9d 100644 --- a/website/custom.html +++ b/website/custom.html @@ -79,6 +79,7 @@ a:hover .PZ3cap { padding:3px 5px; }
+

Recoll result list customising exemples

The Recoll result list is actually made of html text displayed inside a Qt Widget. In all Recoll versions, you can specify the format for the list entries: what data is @@ -86,19 +87,46 @@ a:hover .PZ3cap { padding:3px 5px; } "almost full" support for HTML capabilities, with a few restrictions due to the Qt QTextBrowser object.

-

As of Recoll 1.17, the result list can be built as a WebKit +

As of Recoll 1.17, the result list is by default a WebKit object (WebKit is the basis for several major browsers), which - yields full CSS and even Javascript support.

+ yields full CSS and even Javascript support. For these + versions you can specify both the individual result format and + code to be included in the html header (ie: CSS or + Javascript).

New in Recoll 1.17: the WebKit result list

-

With WebKit, things that used to not work are now possible.

+

With WebKit, things that used to not work are now + possible. The exemple which follow are probably not generally + very useful (else they'd be included in the standard Recoll), + but they provide samples of what can be done, and may be of use + anyway.

-

For example, you can make the list icons links that activate the +

You can now make the list icons links that activate the preview or open action (or the document url which you can then - drag/drop to other windows).

+ drag/drop to other windows) (turning images into links did + not work with QTextBrowser).

-

A more interesting example: recoll 1.17 will display document +

Zooming the paragraph font size

+

If you are using a format with small fonts, it may be useful + to be able to zoom the text when the mouse hovers over it. A + very basic way to do this -with the standard paragraph + format, which is a table- would be to include the following + code in the header:

+
+<STYLE type="text/css">
+table:hover {font-size: 130%;}
+</STYLE>
+
+ +

Of course, the selector should be adapted to your own + result format. You should know that every result will be + enclosed by Recoll inside a <div + class="rclresult" rcldocnum="nn"> element.

+ +

Zooming the thumbnails

+ +

Recoll 1.17 and newer will display document thumbnails instead of the type icon if the thumbnail exists in the standard Freedesktop location. The icons/thumbnails are 64x64 pixels in size, which is a bit small. The standard @@ -153,7 +181,6 @@ a:hover .PZ3cap { padding:3px 5px; } -

Result list paragraph format samples

The format for paragraphs inside the Recoll GUI result list is diff --git a/website/release-1.17.html b/website/release-1.17.html index 2aa92e4b..69cb7283 100644 --- a/website/release-1.17.html +++ b/website/release-1.17.html @@ -45,31 +45,63 @@ recollindex. recollindex -z will do the same in most cases.

-

Also, using the anchored search feature on an 1.15 index - requires a full reindex.

+

Some new, auxiliary, features do require a full reindex to work:

+
    +
  • The file size filtering functions.
  • +
  • The anchored search feature if the index was created by + release 1.15 or older.
  • +

Changes

-

Recoll 1.17 is an incremental improvements release over 1.16, no - really major function was introduced or modified.

+

Recoll 1.17 is an incremental improvements release over 1.16, + with quite a few changes under the hood (like the introduction + of a webkit-based result list), but relatively few obvious + changes for the casual user.

    -
  • Recoll now supports filtering on file sizes. This is accessible - from the advanced search panel, or from the query langage - (ie: "size>10k size<1m"). For documents stored - inside archives, the file size stored in the index is now - the actual one, not the archive's as was previously the - case.
  • - -
  • Query language: tilde is now expanded inside a "dir:" - clause.
  • +
  • Search: Recoll now supports filtering on file sizes. This + is accessible from the advanced search panel, or from the + query langage (ie: "size>10k size<1m"). For + documents stored inside archives, the file size stored in + the index is now the actual one, not the archive's as was + previously the case. Because of this, you will need a full + reindex to completely enable this feature.
  • Query language: the "dir:" directive now accepts non-absolute paths. For example dir:dir1/dir2 will select any file the path of which includes "dir1/dir2".
  • +
  • Query language: tilde is now expanded inside a "dir:" + clause.
  • + +
  • GUI: it is now possible to cancel a query that takes too + long. Because of limitations in Xapian, this forces a program + exit, but it's probably better than staring at a hung + Recoll.
  • + +
  • GUI/config: new set of dialogs to set up the indexing + schedule, either as automatic real time indexing started + with the user session or as discrete cron entries. This + will take care of the details of autostart files or crontab + editing.
  • + +
  • GUI: use Shift+PageUp instead of Shift+Home to rewind the + result list to the first page. Shift+Home is useful in the + search entry.
  • + +
  • GUI: the preview function will now check that the index is + up to date before fetching the preview data, and propose to + update the index if necessary. This is especially important + for mail folders. It was previously possible that the + preview would display a message unrelated to the current + result.
  • + +
  • GUI: it is now possible to control the date format + displayed by the results (go to Query Preferences).
  • +
  • GUI: when a search fails to retrieve results, the spelling suggestions are now presented as links inside the result list area. Clicking a link will replace the appropriate word inside @@ -77,79 +109,65 @@
  • GUI: thumbnails will be displayed in the result list if found in the standard freedesktop thumbnails directory - (previously created by gimp or some file manager). Recoll - will not create thumbnails (this would slow the results display - too much).
  • - -
  • GUI: it is now possible to control the date format used to - display the results (go to Query Preferences).
  • + (previously created by gimp or some file manager). This Recoll + release will not create thumbnails.
  • GUI: it is now possible to Copy/Paste from the term explorer result list.
  • +
  • GUI: what used to be the document category filters + (media/text/etc.) are now defined as query language + fragments + inside mimeconf. This means + that you can redefine them freely (see the comments for the + [guifilters] section in the + default mimeconf).
  • +
  • GUI: it is now possible to use a Qt style sheet to modify many aspects of Recoll appearance. A style sheet file can be selected from the GUI query configuration dialog. A sample skeleton style sheet is to be found in the share/recoll/examples directory.
  • +
  • GUI: the result list is now based on the WebKit widget + instead of QTextBrowser. This means better HTML/CSS support, + and even Javascript ... You can force the use the old + QTextBrowser instead by using + configure --disable-webkit. See a few CSS examples in + the result list customisation + examples page
  • +
  • GUI: added menu entry to show all the mime types actually indexed.
  • -
  • GUI: the result list is now based on the WebKit widget - instead of QTextBrowser. This means better html/css support, - and even Javascript ... You can force the use the old - QTextBrowser instead by using configure --disable-webkit.
  • +
  • GUI/indexing: the indexing thread has been removed. All + indexing is now performed by a separate recollindex + process. This has multiple advantages, the thread was just a + very bad idea. Among others, exiting the GUI has no + influence on an ongoing indexing.
  • -
  • GUI: use Shift+PageUp instead of Shift+Home to rewind the - result list to the first page. Shift+Home is useful in the - search entry.
  • - -
  • The GUI now has a set of dialogs to set up the indexing - schedule, either as automatic real time indexing started - with the user session or as discrete cron entries. This - will take care of the details of autostart files or crontab - editing.
  • +
  • GUI/indexing: new menu entry to force a full reindex.
  • -
  • The GUI indexing thread has been removed. All indexing is - now performed by a separate recollindex process. This has - multiple advantages, the thread was just a very bad - idea. Among others, exiting the GUI has no influence on an - ongoing indexing.
  • +
  • GUI/config: the indexing configuration now only shows the + directories customized by the user, not those which come + from the standard configuration (ie: + ~/.thunderbird). Showing the standard directories was more + often confusing than useful.
  • -
  • The GUI now has a menu entry to force a full reindex.
  • - -
  • The GUI indexing configuration now only shows the directories - customized by the user, not those which come from the - standard configuration (ie: ~/.thunderbird). Showing the - standard directories was more often confusing than - useful.
  • - -
  • GUI: the default reslist paragraph now displays the ipath: +
  • GUI: the default result list paragraph now displays the ipath: this is very useful for archive members and not too disturbing for other kinds.
  • -
  • GUI: it is now possible to cancel a query that takes too - long. Because of limitations in Xapian, this forces a program - exit, but it's probably better than staring at a hung - Recoll.
  • - -
  • GUI: what used to be the document category filters - (media/text/etc.) are now defined as query language - fragments inside mimeconf. This means that you can redefine - them freely (see the comments for the [guifilters] section - in the default mimeconf).
  • -
  • Command line query: can now select a result slice - (first result rank and count of results).
  • + (first result rank and count of results). New option for + easy parsing of results by another program. -
  • Indexer: handle the html5 charset meta tag.
  • +
  • Indexing: handle the html5 charset meta tag.
  • +
  • Indexing: added support for Okular notes and Gnumeric.
  • Real time indexer: restart automatically when the configuration changes.
  • -
  • Indexer: Added okular notes and gnumeric filters.
  • -
  • Fixed bugs: