diff --git a/src/python/recoll/pyrecoll.cpp b/src/python/recoll/pyrecoll.cpp index 52a93780..18df550b 100644 --- a/src/python/recoll/pyrecoll.cpp +++ b/src/python/recoll/pyrecoll.cpp @@ -222,7 +222,7 @@ SearchData_addclause(recoll_SearchDataObject* self, PyObject *args, case 'A': if (strcasecmp(tp, "and")) goto defaultcase; - cl = new Rcl::SearchDataClauseSimple(Rcl::SCLT_AND, qs, fld?fld:""); + cl = new Rcl::SearchDataClauseSimple(Rcl::SCLT_AND, qs, fld ? fld : ""); break; case 'f': case 'F': @@ -234,20 +234,18 @@ SearchData_addclause(recoll_SearchDataObject* self, PyObject *args, case 'O': if (strcasecmp(tp, "or")) goto defaultcase; - cl = new Rcl::SearchDataClauseSimple(Rcl::SCLT_OR, qs, fld?fld:""); + cl = new Rcl::SearchDataClauseSimple(Rcl::SCLT_OR, qs, fld ? fld : ""); break; case 'n': case 'N': if (strcasecmp(tp, "near")) goto defaultcase; - cl = new Rcl::SearchDataClauseDist(Rcl::SCLT_NEAR, qs, slack, - fld ? fld : ""); + cl = new Rcl::SearchDataClauseDist(Rcl::SCLT_NEAR, qs, slack, fld ? fld : ""); break; case 'p': case 'P': if (!strcasecmp(tp, "phrase")) { - cl = new Rcl::SearchDataClauseDist(Rcl::SCLT_PHRASE, qs, slack, - fld ? fld : ""); + cl = new Rcl::SearchDataClauseDist(Rcl::SCLT_PHRASE, qs, slack, fld ? fld : ""); } else if (!strcasecmp(tp, "path")) { cl = new Rcl::SearchDataClausePath(qs); } else { @@ -367,10 +365,9 @@ Doc_setbinurl(recoll_DocObject *self, PyObject *value) return 0; } - self->doc->url = string(PyByteArray_AsString(value), - PyByteArray_Size(value)); - printableUrl(self->rclconfig->getDefCharset(), self->doc->url, - self->doc->meta[Rcl::Doc::keyurl]); + self->doc->url = string(PyByteArray_AsString(value), PyByteArray_Size(value)); + printableUrl( + self->rclconfig->getDefCharset(), self->doc->url, self->doc->meta[Rcl::Doc::keyurl]); Py_RETURN_NONE; } @@ -390,9 +387,8 @@ Doc_keys(recoll_DocObject *self) if (!pkeys) return 0; for (const auto& entry : self->doc->meta) { - PyList_Append(pkeys, - PyUnicode_Decode(entry.first.c_str(), entry.first.size(), - "UTF-8", "replace")); + PyList_Append( + pkeys, PyUnicode_Decode(entry.first.c_str(), entry.first.size(), "UTF-8", "replace")); } return pkeys; } @@ -414,12 +410,10 @@ Doc_items(recoll_DocObject *self) return 0; for (const auto& entry : self->doc->meta) { PyDict_SetItem(pdict, - PyUnicode_Decode(entry.first.c_str(), - entry.first.size(), - "UTF-8", "replace"), - PyUnicode_Decode(entry.second.c_str(), - entry.second.size(), - "UTF-8", "replace")); + PyUnicode_Decode( + entry.first.c_str(), entry.first.size(), "UTF-8", "replace"), + PyUnicode_Decode( + entry.second.c_str(), entry.second.size(), "UTF-8", "replace")); } return pdict; } @@ -462,8 +456,7 @@ static bool idocget(recoll_DocObject *self, const string& key, string& value) value = self->doc->mimetype; return true; } else if (!key.compare(Rcl::Doc::keymt)) { - value = self->doc->dmtime.empty() ? self->doc->fmtime : - self->doc->dmtime; + value = self->doc->dmtime.empty() ? self->doc->fmtime : self->doc->dmtime; return true; } break; @@ -478,8 +471,7 @@ static bool idocget(recoll_DocObject *self, const string& key, string& value) value = self->doc->sig; return true; } else if (!key.compare(Rcl::Doc::keysz)) { - value = self->doc->dbytes.empty() ? self->doc->fbytes : - self->doc->dbytes; + value = self->doc->dbytes.empty() ? self->doc->fbytes : self->doc->dbytes; return true; } break; @@ -569,8 +561,7 @@ Doc_getattro(recoll_DocObject *self, PyObject *nameobj) return 0; } if (!self->rclconfig || !self->rclconfig->ok()) { - PyErr_SetString(PyExc_AttributeError, - "Configuration not initialized"); + PyErr_SetString(PyExc_AttributeError, "Configuration not initialized"); return 0; } @@ -605,8 +596,7 @@ Doc_setattro(recoll_DocObject *self, PyObject *nameobj, PyObject *value) return -1; } if (!self->rclconfig || !self->rclconfig->ok()) { - PyErr_SetString(PyExc_AttributeError, - "Configuration not initialized"); + PyErr_SetString(PyExc_AttributeError, "Configuration not initialized"); return -1; } string name; @@ -681,7 +671,7 @@ Doc_setattro(recoll_DocObject *self, PyObject *nameobj, PyObject *value) case 's': if (key == Rcl::Doc::keysig) { self->doc->sig.swap(uvalue); - } else if (key == Rcl::Doc::keysz) { + } else if (key == Rcl::Doc::keysz) { self->doc->dbytes.swap(uvalue); } break; @@ -708,8 +698,7 @@ Doc_subscript(recoll_DocObject *self, PyObject *key) return NULL; } if (!self->rclconfig || !self->rclconfig->ok()) { - PyErr_SetString(PyExc_AttributeError, - "Configuration not initialized"); + PyErr_SetString(PyExc_AttributeError, "Configuration not initialized"); return NULL; } string name; @@ -721,8 +710,7 @@ Doc_subscript(recoll_DocObject *self, PyObject *key) string skey = self->rclconfig->fieldQCanon(name); string value; if (idocget(self, skey, value)) { - return PyUnicode_Decode(value.c_str(), value.size(), - "UTF-8", "backslashreplace"); + return PyUnicode_Decode(value.c_str(), value.size(), "UTF-8", "backslashreplace"); } Py_RETURN_NONE; } @@ -913,9 +901,7 @@ Query_sortby(recoll_QueryObject* self, PyObject *args, PyObject *kwargs) static const char *kwlist[] = {"field", "ascending", NULL}; char *sfield = 0; PyObject *ascobj = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|O", (char**)kwlist, - &sfield, - &ascobj)) + if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|O", (char**)kwlist, &sfield, &ascobj)) return 0; if (sfield) { @@ -1059,8 +1045,7 @@ Query_executesd(recoll_QueryObject* self, PyObject *args, PyObject *kwargs) // one knows their name (e.g. xdocid). static void movedocfields(const RclConfig* rclconfig, Rcl::Doc *doc) { - printableUrl(rclconfig->getDefCharset(), doc->url, - doc->meta[Rcl::Doc::keyurl]); + printableUrl(rclconfig->getDefCharset(), doc->url, doc->meta[Rcl::Doc::keyurl]); doc->meta[Rcl::Doc::keytp] = doc->mimetype; doc->meta[Rcl::Doc::keyipt] = doc->ipath; doc->meta[Rcl::Doc::keyfs] = doc->fbytes; @@ -1082,7 +1067,7 @@ Query_iternext(PyObject *_self) // This happens if there are no results and is not an error return 0; } - recoll_DocObject *result = + recoll_DocObject *result = (recoll_DocObject *)PyObject_CallObject((PyObject *)&recoll_DocType, 0); if (!result) { PyErr_SetString(PyExc_EnvironmentError, "doc create failed"); @@ -1131,8 +1116,7 @@ Query_fetchmany(PyObject* _self, PyObject *args, PyObject *kwargs) static const char *kwlist[] = {"size", NULL}; int size = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i", (char**)kwlist, - &size)) + if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i", (char**)kwlist, &size)) return 0; if (size == 0) @@ -1169,8 +1153,7 @@ Query_scroll(recoll_QueryObject* self, PyObject *args, PyObject *kwargs) static const char *kwlist[] = {"position", "mode", NULL}; int pos = 0; char *smode = 0; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|s", (char**)kwlist, - &pos, &smode)) + if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|s", (char**)kwlist, &pos, &smode)) return 0; bool isrelative = 1; @@ -1219,8 +1202,7 @@ public: virtual string startMatch(unsigned int idx) { PyObject *res = 0; if (m_methods) - res = PyObject_CallMethod(m_methods, (char *)"startMatch", - (char *)"(i)", idx); + res = PyObject_CallMethod(m_methods, (char *)"startMatch", (char *)"(i)", idx); if (res == 0) return ""; PyObject *res1 = res; @@ -1292,8 +1274,7 @@ Query_highlight(recoll_QueryObject* self, PyObject *args, PyObject *kwargs) return 0; } // cf python manual:The bytes will be interpreted as being UTF-8 encoded. - PyObject* unicode = PyUnicode_FromStringAndSize(out.begin()->c_str(), - out.begin()->size()); + PyObject* unicode = PyUnicode_FromStringAndSize(out.begin()->c_str(), out.begin()->size()); // We used to return a copy of the unicode object. Can't see why any more return unicode; } @@ -1365,8 +1346,7 @@ Query_makedocabstract(recoll_QueryObject* self, PyObject *args,PyObject *kwargs) } // Return a python unicode object - return PyUnicode_Decode(abstract.c_str(), abstract.size(), - "UTF-8", "replace"); + return PyUnicode_Decode(abstract.c_str(), abstract.size(), "UTF-8", "replace"); } PyDoc_STRVAR(doc_Query_getsnippets, @@ -1511,16 +1491,14 @@ Query_getgroups(recoll_QueryObject* self, PyObject *, PyObject *) // multiply_groups to using or-plists. TBD: check if (tg.kind == HighlightData::TermGroup::TGK_TERM) { xlist = PyList_New(1); - PyList_SetItem(xlist, 0, - PyUnicode_Decode(tg.term.c_str(), tg.term.size(), - "UTF-8", "replace")); + PyList_SetItem(xlist, 0, + PyUnicode_Decode(tg.term.c_str(), tg.term.size(), "UTF-8", "replace")); } else { xlist = PyList_New(tg.orgroups.size()); for (unsigned int j = 0; j < tg.orgroups.size(); j++) { - PyList_SetItem(xlist, j, + PyList_SetItem(xlist, j, PyUnicode_Decode(tg.orgroups[j][0].c_str(), - tg.orgroups[j][0].size(), - "UTF-8", "replace")); + tg.orgroups[j][0].size(), "UTF-8", "replace")); } } PyList_Append(mainlist, Py_BuildValue("(OO)", ulist, xlist)); @@ -1717,19 +1695,26 @@ Db_init(recoll_DbObject *self, PyObject *args, PyObject *kwargs) } for (int i = 0; i < dbcnt; i++) { PyObject *item = PySequence_GetItem(extradbs, i); - const char *s = PyBytes_AsString(item); - if (s == nullptr) { - PyErr_SetString(PyExc_TypeError, - "extra_dbs must contain strings"); + string dbname; + if (PyUnicode_Check(item)) { + PyObject *utf8o = PyUnicode_AsUTF8String(item); + if (nullptr != utf8o) { + dbname = PyBytes_AsString(utf8o); + Py_DECREF(utf8o); + } + } else if (PyBytes_Check(item)) { + dbname = PyBytes_AsString(item); + } + if (dbname.empty()) { + PyErr_SetString(PyExc_TypeError, "extra_dbs items must be bytes or strings"); deleteZ(self->db); Py_DECREF(item); return -1; } - string dbname(s); Py_DECREF(item); + string errmsg = string("extra db could not be opened: ") + dbname; if (!self->db->addQueryDb(dbname)) { - PyErr_SetString(PyExc_EnvironmentError, - "extra db could not be opened"); + PyErr_SetString(PyExc_EnvironmentError, errmsg.c_str()); deleteZ(self->db); return -1; } @@ -1792,8 +1777,7 @@ Db_setAbstractParams(recoll_DbObject *self, PyObject *args, PyObject *kwargs) PyErr_SetString(PyExc_AttributeError, "db id not found"); return 0; } - LOGDEB0("Db_setAbstractParams: mxchrs " << maxchars << ", ctxwrds " << - ctxwords << "\n"); + LOGDEB0("Db_setAbstractParams: mxchrs " << maxchars << ", ctxwrds " << ctxwords << "\n"); self->db->setAbstractParams(-1, maxchars, ctxwords); Py_RETURN_NONE; } @@ -1830,8 +1814,7 @@ Db_makeDocAbstract(recoll_DbObject* self, PyObject *args) return 0; } // Return a python unicode object - return PyUnicode_Decode(abstract.c_str(), abstract.size(), - "UTF-8", "replace"); + return PyUnicode_Decode(abstract.c_str(), abstract.size(), "UTF-8", "replace"); } PyDoc_STRVAR( @@ -1906,8 +1889,7 @@ Db_termMatch(recoll_DbObject* self, PyObject *args, PyObject *kwargs) ret = PyList_New(result.entries.size()); for (unsigned int i = 0; i < result.entries.size(); i++) { - PyObject *term = PyUnicode_FromString( - Rcl::strip_prefix(result.entries[i].term).c_str()); + PyObject *term = PyUnicode_FromString(Rcl::strip_prefix(result.entries[i].term).c_str()); if (showfreqs) { PyObject *totcnt = PyLong_FromLong(result.entries[i].wcf); PyObject *doccnt = PyLong_FromLong(result.entries[i].docs); @@ -1934,8 +1916,7 @@ Db_needUpdate(recoll_DbObject* self, PyObject *args, PyObject *kwds) LOGDEB0("Db_needUpdate\n"); char *udi = 0; // needs freeing char *sig = 0; // needs freeing - if (!PyArg_ParseTuple(args, "eses:Db_needUpdate", - "utf-8", &udi, "utf-8", &sig)) { + if (!PyArg_ParseTuple(args, "eses:Db_needUpdate", "utf-8", &udi, "utf-8", &sig)) { return 0; } if (self->db == 0) { @@ -2244,8 +2225,7 @@ PyInit__recoll(void) if (PyType_Ready(&recoll_SearchDataType) < 0) INITERROR; Py_INCREF((PyObject*)&recoll_SearchDataType); - PyModule_AddObject(module, "SearchData", - (PyObject *)&recoll_SearchDataType); + PyModule_AddObject(module, "SearchData", (PyObject *)&recoll_SearchDataType); PyModule_AddStringConstant(module, "__doc__", pyrecoll_doc_string); @@ -2262,8 +2242,7 @@ PyInit__recoll(void) if (PyType_Ready(&recoll_QRSDocType) < 0) INITERROR; Py_INCREF((PyObject*)&recoll_QRSDocType); - PyModule_AddObject(module, "QRSDoc", - (PyObject *)&recoll_QRSDocType); + PyModule_AddObject(module, "QRSDoc", (PyObject *)&recoll_QRSDocType); #if PY_MAJOR_VERSION >= 3 return module; diff --git a/src/qtgui/i18n/recoll_cs.qm b/src/qtgui/i18n/recoll_cs.qm index 033817f1..93b84c4f 100644 Binary files a/src/qtgui/i18n/recoll_cs.qm and b/src/qtgui/i18n/recoll_cs.qm differ diff --git a/src/qtgui/i18n/recoll_cs.ts b/src/qtgui/i18n/recoll_cs.ts index ec00928e..367c6942 100644 --- a/src/qtgui/i18n/recoll_cs.ts +++ b/src/qtgui/i18n/recoll_cs.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1871,6 +1878,14 @@ Prověřte soubor pracovní plochy Move keyboard focus to table Přesunout zaostření klávesnice do tabulky + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2550,6 +2565,10 @@ Prověřte soubor pracovní plochy %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2915,6 +2934,14 @@ Použijte odkaz <b>Ukázat hledání</b>, když máte o výsledku po Using current preferences. Použití aktuálních preferencí. + + Simple search + + + + History + + SSearchBase @@ -4634,7 +4661,7 @@ Výchozí hodnota je 2 (procenta). Work around QTBUG-78923 by inserting space before anchor text - Pracujte kolem QTBUG-78923 vložením místa před zakotvením textu + Pracujte kolem QTBUG-78923 vložením místa před zakotvením textu Display a Snippets link even if the document has no pages (needs restart). @@ -4772,5 +4799,13 @@ Výchozí hodnota je 2 (procenta). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_da.qm b/src/qtgui/i18n/recoll_da.qm index c1f99ba5..2f255b39 100644 Binary files a/src/qtgui/i18n/recoll_da.qm and b/src/qtgui/i18n/recoll_da.qm differ diff --git a/src/qtgui/i18n/recoll_da.ts b/src/qtgui/i18n/recoll_da.ts index ad7a1398..98e1e381 100644 --- a/src/qtgui/i18n/recoll_da.ts +++ b/src/qtgui/i18n/recoll_da.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1870,6 +1877,14 @@ Tjek venligst desktopfilen Move keyboard focus to table Flyt tastaturets fokus til tabellen + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2549,6 +2564,10 @@ Tjek venligst desktopfilen %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2912,6 +2931,14 @@ Brug <b>Vis Forespørgsel</b> link når i tvivl om resultatet og se Using current preferences. Brug af aktuelle indstillinger. + + Simple search + + + + History + + SSearchBase @@ -4630,7 +4657,7 @@ Standardværdien er 2 (procent). Work around QTBUG-78923 by inserting space before anchor text - Arbejd omkring QTBUG-78923 ved at indsætte plads før ankertekst + Arbejd omkring QTBUG-78923 ved at indsætte plads før ankertekst Display a Snippets link even if the document has no pages (needs restart). @@ -4768,5 +4795,13 @@ Standardværdien er 2 (procent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_de.qm b/src/qtgui/i18n/recoll_de.qm index 14367ba0..bebddf47 100644 Binary files a/src/qtgui/i18n/recoll_de.qm and b/src/qtgui/i18n/recoll_de.qm differ diff --git a/src/qtgui/i18n/recoll_de.ts b/src/qtgui/i18n/recoll_de.ts index 6ec43718..f31ed82d 100644 --- a/src/qtgui/i18n/recoll_de.ts +++ b/src/qtgui/i18n/recoll_de.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1884,6 +1891,14 @@ Bitte überprüfen Sie die Desktop-Datei Move keyboard focus to table Tastaturfokus in Tabelle verschieben + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2563,6 +2578,10 @@ Bitte überprüfen Sie die Desktop-Datei %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2929,6 +2948,14 @@ Benutze <b>Abfrage anzeigen</b> Link bei Zweifeln am Ergebnis und si Using current preferences. Benutze die aktuellen Einstellungen. + + Simple search + + + + History + + SSearchBase @@ -4655,7 +4682,7 @@ und vermindern den Nutzender automatischen Phrasen. Der Standardwert ist 2. Work around QTBUG-78923 by inserting space before anchor text - Umgehen Sie QTBUG-78923, indem Sie vor dem Ankertext ein Leerzeichen einfügen + Umgehen Sie QTBUG-78923, indem Sie vor dem Ankertext ein Leerzeichen einfügen Display a Snippets link even if the document has no pages (needs restart). @@ -4793,5 +4820,13 @@ und vermindern den Nutzender automatischen Phrasen. Der Standardwert ist 2.Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_el.qm b/src/qtgui/i18n/recoll_el.qm index 4f4fd7cb..642a6ef1 100644 Binary files a/src/qtgui/i18n/recoll_el.qm and b/src/qtgui/i18n/recoll_el.qm differ diff --git a/src/qtgui/i18n/recoll_el.ts b/src/qtgui/i18n/recoll_el.ts index 790a3a4c..7d36a1cf 100644 --- a/src/qtgui/i18n/recoll_el.ts +++ b/src/qtgui/i18n/recoll_el.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1870,6 +1877,14 @@ Please check the desktop file Move keyboard focus to table Μετακίνηση εστίασης πληκτρολογίου στον πίνακα + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2549,6 +2564,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2914,6 +2933,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. Χρησιμοποιώντας τις τρέχουσες προτιμήσεις. + + Simple search + + + + History + + SSearchBase @@ -4631,7 +4658,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - Εργασία γύρω από QTBUG-78923 με την εισαγωγή χώρου πριν από το κείμενο αγκύρωσης + Εργασία γύρω από QTBUG-78923 με την εισαγωγή χώρου πριν από το κείμενο αγκύρωσης Display a Snippets link even if the document has no pages (needs restart). @@ -4769,5 +4796,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_es.qm b/src/qtgui/i18n/recoll_es.qm index ad779e5a..dc9c457e 100644 Binary files a/src/qtgui/i18n/recoll_es.qm and b/src/qtgui/i18n/recoll_es.qm differ diff --git a/src/qtgui/i18n/recoll_es.ts b/src/qtgui/i18n/recoll_es.ts index d54c4511..4b772fc2 100644 --- a/src/qtgui/i18n/recoll_es.ts +++ b/src/qtgui/i18n/recoll_es.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1869,6 +1876,14 @@ Por favor, compruebe el archivo de escritorio Move keyboard focus to table Mover foco del teclado a la tabla + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2548,6 +2563,10 @@ Por favor, compruebe el archivo de escritorio %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2914,6 +2933,14 @@ Usar <b>Mostrar consulta</b> enlace cuando haya dudas sobre el resul Using current preferences. Utilizando las preferencias actuales. + + Simple search + + + + History + + SSearchBase @@ -4630,7 +4657,7 @@ El valor por defecto es 2 (por ciento). Work around QTBUG-78923 by inserting space before anchor text - Trabaje alrededor de QTBUG-78923 insertando espacio antes del texto del anclaje + Trabaje alrededor de QTBUG-78923 insertando espacio antes del texto del anclaje Display a Snippets link even if the document has no pages (needs restart). @@ -4768,5 +4795,13 @@ El valor por defecto es 2 (por ciento). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_fr.qm b/src/qtgui/i18n/recoll_fr.qm index fce8ce2f..e9882588 100644 Binary files a/src/qtgui/i18n/recoll_fr.qm and b/src/qtgui/i18n/recoll_fr.qm differ diff --git a/src/qtgui/i18n/recoll_fr.ts b/src/qtgui/i18n/recoll_fr.ts index f58d87df..28b69aa2 100644 --- a/src/qtgui/i18n/recoll_fr.ts +++ b/src/qtgui/i18n/recoll_fr.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + Recherche dans les menus + + AdvSearch @@ -1871,6 +1878,14 @@ Merci de vérifier le fichier desktop Move keyboard focus to table Cibler l'entrée clavier vers la table + + Flushing + Écriture de l'index + + + Show menu search dialog + Afficher le dialogue de recherche dans les menus + RclMainBase @@ -2550,6 +2565,10 @@ Merci de vérifier le fichier desktop %1 bytes copied to clipboard %1 octets copiés vers le presse-papiers + + Copy result text and quit + Copier le texte du résultat et quitter le programme + ResTableDetailArea @@ -2915,6 +2934,14 @@ Utiliser le lien <b>Afficher la requête en détail</b> en cas de do Using current preferences. Utilisation des préférences actuelles. + + Simple search + Type de recherche simple + + + History + Historique + SSearchBase @@ -4633,7 +4660,7 @@ La valeur par défaut est 2% Work around QTBUG-78923 by inserting space before anchor text - Contourner le QTBUG-78923 en inseŕant un espace devant le texte du lien + Contourner le QTBUG-78923 en inseŕant un espace devant le texte du lien Display a Snippets link even if the document has no pages (needs restart). @@ -4771,5 +4798,13 @@ La valeur par défaut est 2% Do not display metadata when hovering over rows. Ne pas afficher les détails quand on passe sur un rang avec la souris. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + Contourner le bug QTBUG-78923 pour le Tamil en inseŕant un espace devant le texte du lien + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + Ce bug provoque l'apparition d'un caractère étrange en forme de cercle à l'intérieur de mots en Tamil. Le contournement insère un caractère d'espace additionnel supplémentaire qui semble corriger le problème. + diff --git a/src/qtgui/i18n/recoll_hu.qm b/src/qtgui/i18n/recoll_hu.qm index 5dd52e2f..8ff4265b 100644 Binary files a/src/qtgui/i18n/recoll_hu.qm and b/src/qtgui/i18n/recoll_hu.qm differ diff --git a/src/qtgui/i18n/recoll_hu.ts b/src/qtgui/i18n/recoll_hu.ts index d2c238ce..26b8cecc 100644 --- a/src/qtgui/i18n/recoll_hu.ts +++ b/src/qtgui/i18n/recoll_hu.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1876,6 +1883,14 @@ Ellenőrizni kell az asztali beállítófájlt! Move keyboard focus to table Move keyboard focus to table + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2555,6 +2570,10 @@ Ellenőrizni kell az asztali beállítófájlt! %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2921,6 +2940,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. Using current preferences. + + Simple search + + + + History + + SSearchBase @@ -4654,7 +4681,7 @@ A PRE+wrap valószínűleg a legjobb választás. Work around QTBUG-78923 by inserting space before anchor text - Work around QTBUG-78923 by inserting space before anchor text + Work around QTBUG-78923 by inserting space before anchor text Display a Snippets link even if the document has no pages (needs restart). @@ -4792,5 +4819,13 @@ A PRE+wrap valószínűleg a legjobb választás. Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_it.qm b/src/qtgui/i18n/recoll_it.qm index 4c7680f4..8935fe1a 100644 Binary files a/src/qtgui/i18n/recoll_it.qm and b/src/qtgui/i18n/recoll_it.qm differ diff --git a/src/qtgui/i18n/recoll_it.ts b/src/qtgui/i18n/recoll_it.ts index 65a474d7..1e2400e8 100644 --- a/src/qtgui/i18n/recoll_it.ts +++ b/src/qtgui/i18n/recoll_it.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1871,6 +1878,14 @@ Si prega di controllare il file desktop Move keyboard focus to table Sposta il focus della tastiera nella tabella + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2550,6 +2565,10 @@ Si prega di controllare il file desktop %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2915,6 +2934,14 @@ Usa <b>Mostra il link Query</b> quando hai dubbi sul risultato e ved Using current preferences. Usare le preferenze correnti. + + Simple search + + + + History + + SSearchBase @@ -4635,7 +4662,7 @@ Il valore predefinito è 2 (percentuale). Work around QTBUG-78923 by inserting space before anchor text - Lavorare intorno a QTBUG-78923 inserendo spazio prima del testo di ancoraggio + Lavorare intorno a QTBUG-78923 inserendo spazio prima del testo di ancoraggio Display a Snippets link even if the document has no pages (needs restart). @@ -4773,5 +4800,13 @@ Il valore predefinito è 2 (percentuale). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_ja.qm b/src/qtgui/i18n/recoll_ja.qm index b4259517..113e3387 100644 Binary files a/src/qtgui/i18n/recoll_ja.qm and b/src/qtgui/i18n/recoll_ja.qm differ diff --git a/src/qtgui/i18n/recoll_ja.ts b/src/qtgui/i18n/recoll_ja.ts index 7800f117..4d34c605 100644 --- a/src/qtgui/i18n/recoll_ja.ts +++ b/src/qtgui/i18n/recoll_ja.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1611,6 +1618,14 @@ Please check the desktop file Move keyboard focus to table キーボードのフォーカスをテーブルに移動します + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2127,6 +2142,10 @@ Please check the desktop file %1 bytes copied to clipboard %1 bytes をクリップボードにコピーしました + + Copy result text and quit + + SSearch @@ -2326,6 +2345,14 @@ Please check the desktop file Using current preferences. 現在の詳細設定を使用. + + Simple search + + + + History + + SSearchBase @@ -3271,7 +3298,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - アンカーテキストの前にスペースを挿入して、QTBUG-78923を回避します + アンカーテキストの前にスペースを挿入して、QTBUG-78923を回避します Display a Snippets link even if the document has no pages (needs restart). @@ -3389,5 +3416,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_ko.qm b/src/qtgui/i18n/recoll_ko.qm index 3829fbf3..e3fabafc 100644 Binary files a/src/qtgui/i18n/recoll_ko.qm and b/src/qtgui/i18n/recoll_ko.qm differ diff --git a/src/qtgui/i18n/recoll_ko.ts b/src/qtgui/i18n/recoll_ko.ts index c82eef9a..f6719b8f 100644 --- a/src/qtgui/i18n/recoll_ko.ts +++ b/src/qtgui/i18n/recoll_ko.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1873,6 +1880,14 @@ Please check the desktop file Move keyboard focus to table 키보드 포커스를 테이블로 이동 + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2552,6 +2567,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2916,6 +2935,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. Using current preferences. + + Simple search + + + + History + + SSearchBase @@ -3943,7 +3970,7 @@ This should give higher precedence to the results where the search terms appear Recoll - Index Settings: - Recoll - 색인 설정: + Recoll - 색인 설정: @@ -4557,7 +4584,7 @@ The default value is 2 (percent). Start with simple search mode - 단순 검색의 검색 기준 기본값: + 단순 검색의 검색 기준 기본값: Show warning when opening temporary file. @@ -4771,5 +4798,9 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. 마우스가 행 위에 있을 때 메타데이터 표시하지 않기. + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_lt.qm b/src/qtgui/i18n/recoll_lt.qm index fe672e62..73d7b13b 100644 Binary files a/src/qtgui/i18n/recoll_lt.qm and b/src/qtgui/i18n/recoll_lt.qm differ diff --git a/src/qtgui/i18n/recoll_lt.ts b/src/qtgui/i18n/recoll_lt.ts index 8239b389..058ab0df 100644 --- a/src/qtgui/i18n/recoll_lt.ts +++ b/src/qtgui/i18n/recoll_lt.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1870,6 +1877,14 @@ Please check the desktop file Move keyboard focus to table Move keyboard focus to table + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2549,6 +2564,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2914,6 +2933,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. Using current preferences. + + Simple search + + + + History + + SSearchBase @@ -4628,7 +4655,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - Work around QTBUG-78923 by inserting space before anchor text + Work around QTBUG-78923 by inserting space before anchor text Display a Snippets link even if the document has no pages (needs restart). @@ -4766,5 +4793,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_nl.qm b/src/qtgui/i18n/recoll_nl.qm index d97d458a..484d3e0e 100644 Binary files a/src/qtgui/i18n/recoll_nl.qm and b/src/qtgui/i18n/recoll_nl.qm differ diff --git a/src/qtgui/i18n/recoll_nl.ts b/src/qtgui/i18n/recoll_nl.ts index 47e157b1..1624909c 100644 --- a/src/qtgui/i18n/recoll_nl.ts +++ b/src/qtgui/i18n/recoll_nl.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1863,6 +1870,14 @@ Please check the desktop file Move keyboard focus to table Verplaats toetsenbord focus naar tabel + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2542,6 +2557,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2907,6 +2926,14 @@ Gebruik <b> Toon Zoekterm </b> in geval van twijfel over de uitslag Using current preferences. Gebruik huidige voorkeuren. + + Simple search + + + + History + + SSearchBase @@ -4616,7 +4643,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - Om QTBUG-78923 te gebruiken voor ankertekst + Om QTBUG-78923 te gebruiken voor ankertekst Display a Snippets link even if the document has no pages (needs restart). @@ -4754,5 +4781,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_pl.qm b/src/qtgui/i18n/recoll_pl.qm index 2715876a..9ab226da 100644 Binary files a/src/qtgui/i18n/recoll_pl.qm and b/src/qtgui/i18n/recoll_pl.qm differ diff --git a/src/qtgui/i18n/recoll_pl.ts b/src/qtgui/i18n/recoll_pl.ts index f6b81b8b..477d2aeb 100644 --- a/src/qtgui/i18n/recoll_pl.ts +++ b/src/qtgui/i18n/recoll_pl.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1873,6 +1880,14 @@ Sprawdź plik pulpitu Move keyboard focus to table Przenieś ostrość klawiatury do tabeli + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2552,6 +2567,10 @@ Sprawdź plik pulpitu %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2917,6 +2936,14 @@ Użyj <b>Pokaż link Zapytania</b> w razie wątpliwości co do wynik Using current preferences. Używanie aktualnych preferencji. + + Simple search + + + + History + + SSearchBase @@ -4635,7 +4662,7 @@ Domyślna wartość to 2 (%). Work around QTBUG-78923 by inserting space before anchor text - Pracuj wokół QTBUG-78923 wstawiając spację przed kotwicą tekstu + Pracuj wokół QTBUG-78923 wstawiając spację przed kotwicą tekstu Display a Snippets link even if the document has no pages (needs restart). @@ -4773,5 +4800,13 @@ Domyślna wartość to 2 (%). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_ru.qm b/src/qtgui/i18n/recoll_ru.qm index be69ffe4..d6c283f2 100644 Binary files a/src/qtgui/i18n/recoll_ru.qm and b/src/qtgui/i18n/recoll_ru.qm differ diff --git a/src/qtgui/i18n/recoll_ru.ts b/src/qtgui/i18n/recoll_ru.ts index 1fad4b8a..b1f42481 100644 --- a/src/qtgui/i18n/recoll_ru.ts +++ b/src/qtgui/i18n/recoll_ru.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -391,7 +398,7 @@ If empty, the above log file name value will be used. It may useful to have a separate log for diagnostic purposes because the common log will be erased when<br>the GUI starts up. - If empty, the above log file name value will be used. It may useful to have a separate log for diagnostic purposes because the common log will be erased when<br>the GUI starts up. + Если не указано, будет использовано расположенное выше значение имени файла журнала. Для целей диагностики может быть полезен отдельный журнал,<br>так как общий журнал будет стёрт при запуске графического интерфейса пользователя. Disk full threshold percentage at which we stop indexing<br>E.g. 90% to stop at 90% full, 0 or 100 means no limit) @@ -403,23 +410,23 @@ Process the Web history queue - + Обрабатывать просмотренные веб-страницы (by default, aspell suggests mispellings when a query has no results). - + (по умолчанию aspell предполагает ошибки, когда запрос не возвращает результатов). Page recycle interval - + Интервал удаления страниц <p>By default, only one instance of an URL is kept in the cache. This can be changed by setting this to a value determining at what frequency we keep multiple instances ('day', 'week', 'month', 'year'). Note that increasing the interval will not erase existing entries. - + <p>По умолчанию в кэше хранится только один экземпляр URL. Это поведение можно изменить, установив этот параметр в значение, которое определяет периодичность хранения нескольких экземпляров («день», «неделя», «месяц», «год»). Обратите внимание, что увеличение интервала не приведёт к удалению существующих записей. Note: old pages will be erased to make space for new ones when the maximum size is reached. Current size: %1 - + Примечание: старые страницы будут удалены, чтобы освободить место для новых, когда будет достигнуто предельное значение размера кэша. Текущий размер: %1 @@ -1135,15 +1142,15 @@ Click Cancel if you want to edit the configuration file before indexing starts, Copy Text - + Копировать текст Copy &File Path - + Копировать путь к &файлу Copy File Name - + Копировать имя файла @@ -1872,6 +1879,14 @@ Please check the desktop file Move keyboard focus to table Переместить фокус клавиатуры в таблицу + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2204,19 +2219,19 @@ Please check the desktop file Increase results text font size - + Увеличить размер шрифта текста результатов Increase Font Size - + Увеличить размер шрифта Decrease results text font size - + Уменьшить размер шрифта текста результатов Decrease Font Size - + Уменьшить размер шрифта @@ -2548,10 +2563,14 @@ Please check the desktop file Use Shift+click to display the text instead. - + Чтобы вместо этого просмотреть текст, используйте Shift+щелчок. %1 bytes copied to clipboard + %1 байт скопировано в буфер обмена + + + Copy result text and quit @@ -2919,6 +2938,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. Использование текущих настроек. + + Simple search + + + + History + + SSearchBase @@ -3214,11 +3241,11 @@ Use <b>Show Query</b> link when in doubt about result and see manual Diagnostics output file. Will be truncated and receive indexing diagnostics (reasons for files not being indexed). - + Выходной файл диагностики. Будет усечён и получит диагностику индексирования (причины отсутствия индексации файлов). Diagnostics file - + Файл диагностики @@ -3491,7 +3518,7 @@ Use <b>Show Query</b> link when in doubt about result and see manual Choose QSS File - + Выбрать файл QSS @@ -3834,11 +3861,11 @@ This should give higher precedence to the results where the search terms appear Save to File - + Сохранить в файл File creation failed: - + Не удалось создать файл: @@ -3853,11 +3880,11 @@ This should give higher precedence to the results where the search terms appear Date - Дата + Дата Size - + Размер @@ -4637,7 +4664,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - Обходить QTBUG-78923 путём вставки пробела перед текстом привязки + Обходить QTBUG-78923 путём вставки пробела перед текстом привязки Display a Snippets link even if the document has no pages (needs restart). @@ -4697,82 +4724,90 @@ The default value is 2 (percent). Hide some user interface elements. - + Скрыть некоторые элементы интерфейса пользователя. Hide: - + Скрыть: Toolbars - + Панели инструментов Status bar - + Строка состояния Show button instead. - + Заменить на кнопку. Menu bar - + Строка меню Show choice in menu only. - + Показывать варианты только в меню. Simple search type - Простой тип поиска + Простой тип поиска Clear/Search buttons - + Кнопки «Очистить» и «Поиск» Disable the Ctrl+[0-9]/Shift+[a-z] shortcuts for jumping to table rows. - + Отключить комбинации клавиш Ctrl+[0-9]/Shift+[a-z] для быстрого перехода к строкам таблицы. None (default) - + Нет (по умолчанию) Uses the default dark mode style sheet - + Использовать таблицу стилей тёмного режима по умолчанию Dark mode - Темный режим + Тёмный режим Choose QSS File - + Выбрать файл QSS To display document text instead of metadata in result table detail area, use: - + Чтобы просмотреть текст документа (а не метаданные) в области сведений таблицы результатов: left mouse click - + щелчок левой кнопкой мыши Shift+click - + Shift+щелчок Opens a dialog to select the style sheet file.<br>Look at /usr/share/recoll/examples/recoll[-dark].qss for an example. - + Открыть диалог выбора файла таблицы стилей.<br>Пример: /usr/share/recoll/examples/recoll[-dark].qss. Result Table - Таблица результатов + Таблица результатов Do not display metadata when hovering over rows. + Не показывать метаданные при наведении указателя на строки. + + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. diff --git a/src/qtgui/i18n/recoll_sv.qm b/src/qtgui/i18n/recoll_sv.qm index 4c9b5862..5c769be7 100644 Binary files a/src/qtgui/i18n/recoll_sv.qm and b/src/qtgui/i18n/recoll_sv.qm differ diff --git a/src/qtgui/i18n/recoll_sv.ts b/src/qtgui/i18n/recoll_sv.ts index a2675f8a..08bd204a 100644 --- a/src/qtgui/i18n/recoll_sv.ts +++ b/src/qtgui/i18n/recoll_sv.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1872,6 +1879,14 @@ Kolla desktop-filen. Move keyboard focus to table Flytta tangentbordsfokus till tabell + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2551,6 +2566,10 @@ Kolla desktop-filen. %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2916,6 +2935,14 @@ Använd <b>Visa fråga</b> länk när du är osäker på resultatet Using current preferences. Använder aktuella inställningar. + + Simple search + + + + History + + SSearchBase @@ -4635,7 +4662,7 @@ Standardvärdet är 2 (procent). Work around QTBUG-78923 by inserting space before anchor text - Arbeta runt QTBUG-78923 genom att infoga utrymme före ankartext + Arbeta runt QTBUG-78923 genom att infoga utrymme före ankartext Display a Snippets link even if the document has no pages (needs restart). @@ -4773,5 +4800,13 @@ Standardvärdet är 2 (procent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_tr.qm b/src/qtgui/i18n/recoll_tr.qm index 8cf5037b..cc544ffa 100644 Binary files a/src/qtgui/i18n/recoll_tr.qm and b/src/qtgui/i18n/recoll_tr.qm differ diff --git a/src/qtgui/i18n/recoll_tr.ts b/src/qtgui/i18n/recoll_tr.ts index f8945d93..f4f1a980 100644 --- a/src/qtgui/i18n/recoll_tr.ts +++ b/src/qtgui/i18n/recoll_tr.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1872,6 +1879,14 @@ Please check the desktop file Move keyboard focus to table Move keyboard focus to table + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2551,6 +2566,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2916,6 +2935,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. Using current preferences. + + Simple search + + + + History + + SSearchBase @@ -4635,7 +4662,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - Work around QTBUG-78923 by inserting space before anchor text + Work around QTBUG-78923 by inserting space before anchor text Display a Snippets link even if the document has no pages (needs restart). @@ -4773,5 +4800,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_uk.qm b/src/qtgui/i18n/recoll_uk.qm index 0b078aca..91352372 100644 Binary files a/src/qtgui/i18n/recoll_uk.qm and b/src/qtgui/i18n/recoll_uk.qm differ diff --git a/src/qtgui/i18n/recoll_uk.ts b/src/qtgui/i18n/recoll_uk.ts index b4fc68a0..2ca7562f 100644 --- a/src/qtgui/i18n/recoll_uk.ts +++ b/src/qtgui/i18n/recoll_uk.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1873,6 +1880,14 @@ Please check the desktop file Move keyboard focus to table Перемістити фокус клавіатури до таблиці + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2552,6 +2567,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2917,6 +2936,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. Використання поточних уподобань. + + Simple search + + + + History + + SSearchBase @@ -4636,7 +4663,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - Робота над QTBUG-78923 шляхом вставлення простору перед якорем тексту + Робота над QTBUG-78923 шляхом вставлення простору перед якорем тексту Display a Snippets link even if the document has no pages (needs restart). @@ -4774,5 +4801,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_xx.ts b/src/qtgui/i18n/recoll_xx.ts index c255ad18..995211c8 100644 --- a/src/qtgui/i18n/recoll_xx.ts +++ b/src/qtgui/i18n/recoll_xx.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1554,6 +1561,14 @@ Please check the desktop file Move keyboard focus to table + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2061,6 +2076,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + SSearch @@ -2260,6 +2279,14 @@ Please check the desktop file Using current preferences. + + Simple search + + + + History + + SSearchBase @@ -3193,10 +3220,6 @@ The default value is 2 (percent). Misc - - Work around QTBUG-78923 by inserting space before anchor text - - Display a Snippets link even if the document has no pages (needs restart). @@ -3309,5 +3332,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_zh.ts b/src/qtgui/i18n/recoll_zh.ts index 065f118f..d4b1561c 100644 --- a/src/qtgui/i18n/recoll_zh.ts +++ b/src/qtgui/i18n/recoll_zh.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1753,6 +1760,14 @@ Please check the desktop file Move keyboard focus to table + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2376,6 +2391,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2698,6 +2717,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. + + Simple search + + + + History + + SSearchBase @@ -3897,10 +3924,6 @@ The default value is 2 (percent). Misc - - Work around QTBUG-78923 by inserting space before anchor text - - Display a Snippets link even if the document has no pages (needs restart). @@ -4013,5 +4036,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + + diff --git a/src/qtgui/i18n/recoll_zh_CN.qm b/src/qtgui/i18n/recoll_zh_CN.qm index 0a2f7c7d..bd49faca 100644 Binary files a/src/qtgui/i18n/recoll_zh_CN.qm and b/src/qtgui/i18n/recoll_zh_CN.qm differ diff --git a/src/qtgui/i18n/recoll_zh_CN.ts b/src/qtgui/i18n/recoll_zh_CN.ts index 843b0e10..7a6ade21 100644 --- a/src/qtgui/i18n/recoll_zh_CN.ts +++ b/src/qtgui/i18n/recoll_zh_CN.ts @@ -1,6 +1,13 @@ + + ActSearchDLG + + Menu search + + + AdvSearch @@ -1936,6 +1943,14 @@ Please check the desktop file Move keyboard focus to table 移动键盘焦点到表 + + Flushing + + + + Show menu search dialog + + RclMainBase @@ -2615,6 +2630,10 @@ Please check the desktop file %1 bytes copied to clipboard + + Copy result text and quit + + ResTableDetailArea @@ -2989,6 +3008,14 @@ Use <b>Show Query</b> link when in doubt about result and see manual Using current preferences. 使用当前首选项。 + + Simple search + + + + History + + SSearchBase @@ -4708,7 +4735,7 @@ The default value is 2 (percent). Work around QTBUG-78923 by inserting space before anchor text - 通过在锚文本前插入空格临时解决QTBUG-78923 + 通过在锚文本前插入空格临时解决QTBUG-78923 Display a Snippets link even if the document has no pages (needs restart). @@ -4846,5 +4873,13 @@ The default value is 2 (percent). Do not display metadata when hovering over rows. + + Work around Tamil QTBUG-78923 by inserting space before anchor text + + + + The bug causes a strange circle characters to be displayed inside highlighted Tamil words. The workaround inserts an additional space character which appears to fix the problem. + +