Adapt the short format of time shown in file search plugin.
This commit is contained in:
parent
ec6c5941b1
commit
f749537cc2
|
@ -25,7 +25,8 @@ set(LIBUKUI_SEARCH_PC_PKGS
|
|||
kysdk-qtwidgets
|
||||
lept
|
||||
uchardet
|
||||
tesseract)
|
||||
tesseract
|
||||
kysdk-systime)
|
||||
|
||||
foreach(PC_LIB IN ITEMS ${LIBUKUI_SEARCH_PC_PKGS})
|
||||
pkg_check_modules(${PC_LIB} REQUIRED IMPORTED_TARGET ${PC_LIB})
|
||||
|
|
|
@ -22,13 +22,67 @@
|
|||
#include <QLabel>
|
||||
#include <QHBoxLayout>
|
||||
#include <QMessageBox>
|
||||
#include <QDBusInterface>
|
||||
#include <QMutexLocker>
|
||||
#include "search-manager.h"
|
||||
#include "file-indexer-config.h"
|
||||
#include "libkydate.h"
|
||||
|
||||
#define OCR_ICONLABLE_WITH 352
|
||||
#define OCR_ICONLABLE_HEIGHT 247
|
||||
using namespace UkuiSearch;
|
||||
|
||||
static QMutex g_formatMutex;
|
||||
static const QString DEFAULT_DATETIME_FORMAT = "yyyy/MM/dd hh:mm:ss";
|
||||
|
||||
class DateFormat : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
static DateFormat& getInstance() {
|
||||
static DateFormat instance;
|
||||
return instance;
|
||||
}
|
||||
|
||||
QString format() {
|
||||
QMutexLocker locker(&g_formatMutex);
|
||||
if (m_dateFormat == DEFAULT_DATETIME_FORMAT) {
|
||||
return QString();
|
||||
}
|
||||
return m_dateFormat;
|
||||
}
|
||||
|
||||
public Q_SLOTS:
|
||||
void updateDateFormat(QString format) {
|
||||
QMutexLocker locker(&g_formatMutex);
|
||||
m_dateFormat = format + " hh:mm:ss";
|
||||
}
|
||||
private:
|
||||
explicit DateFormat(QObject *parent = nullptr) : QObject(parent)
|
||||
{
|
||||
char* shortFormat = kdk_system_get_shortformat();
|
||||
m_dateFormat = shortFormat;
|
||||
free(shortFormat);
|
||||
if (m_dateFormat.isEmpty()) {
|
||||
m_dateFormat = DEFAULT_DATETIME_FORMAT;
|
||||
} else {
|
||||
m_dateFormat += " hh:mm:ss";
|
||||
}
|
||||
|
||||
qDebug() << "connect sdk date signal" << QDBusConnection::sessionBus().connect("com.kylin.kysdk.DateServer",
|
||||
"/com/kylin/kysdk/Date",
|
||||
"com.kylin.kysdk.DateInterface",
|
||||
"ShortDateSignal",
|
||||
this, SLOT(updateDateFormat(QString)));
|
||||
}
|
||||
DateFormat(const DateFormat&) = delete;
|
||||
DateFormat& operator = (const DateFormat&) = delete;
|
||||
~DateFormat() = default;
|
||||
|
||||
QString m_dateFormat;
|
||||
};
|
||||
|
||||
FileSearchPlugin::FileSearchPlugin(QObject *parent) : QObject(parent)
|
||||
{
|
||||
SearchPluginIface::Actioninfo open { 0, tr("Open")};
|
||||
|
@ -126,7 +180,12 @@ QWidget *FileSearchPlugin::detailPage(const ResultInfo &ri)
|
|||
|
||||
m_pathLabel2->setText(m_pathLabel2->fontMetrics().elidedText(m_currentActionKey, Qt::ElideRight, m_pathLabel2->width()));
|
||||
m_pathLabel2->setToolTip(m_currentActionKey);
|
||||
m_timeLabel2->setText(ri.description.at(1).value);
|
||||
QString modTimeText = ri.description.at(1).value;
|
||||
if (!DateFormat::getInstance().format().isEmpty()) {
|
||||
QDateTime modTime = QDateTime::fromString(modTimeText, DEFAULT_DATETIME_FORMAT);
|
||||
modTimeText = modTime.toString(DateFormat::getInstance().format());
|
||||
}
|
||||
m_timeLabel2->setText(modTimeText);
|
||||
return m_detailPage;
|
||||
}
|
||||
|
||||
|
@ -328,7 +387,12 @@ QWidget *DirSearchPlugin::detailPage(const ResultInfo &ri)
|
|||
|
||||
m_pathLabel2->setText(m_pathLabel2->fontMetrics().elidedText(m_currentActionKey, Qt::ElideRight, m_pathLabel2->width()));
|
||||
m_pathLabel2->setToolTip(m_currentActionKey);
|
||||
m_timeLabel2->setText(ri.description.at(1).value);
|
||||
QString modTimeText = ri.description.at(1).value;
|
||||
if (!DateFormat::getInstance().format().isEmpty()) {
|
||||
QDateTime modTime = QDateTime::fromString(modTimeText, DEFAULT_DATETIME_FORMAT);
|
||||
modTimeText = modTime.toString(DateFormat::getInstance().format());
|
||||
}
|
||||
m_timeLabel2->setText(modTimeText);
|
||||
return m_detailPage;
|
||||
}
|
||||
|
||||
|
@ -551,7 +615,12 @@ QWidget *FileContengSearchPlugin::detailPage(const ResultInfo &ri)
|
|||
|
||||
m_pathLabel2->setText(m_pathLabel2->fontMetrics().elidedText(m_currentActionKey, Qt::ElideRight, m_pathLabel2->width()));
|
||||
m_pathLabel2->setToolTip(m_currentActionKey);
|
||||
m_timeLabel2->setText(ri.description.at(2).value);
|
||||
QString modTimeText = ri.description.at(2).value;
|
||||
if (!DateFormat::getInstance().format().isEmpty()) {
|
||||
QDateTime modTime = QDateTime::fromString(modTimeText, DEFAULT_DATETIME_FORMAT);
|
||||
modTimeText = modTime.toString(DateFormat::getInstance().format());
|
||||
}
|
||||
m_timeLabel2->setText(modTimeText);
|
||||
return m_detailPage;
|
||||
}
|
||||
|
||||
|
@ -718,3 +787,4 @@ void ThumbnailCreator::run()
|
|||
{
|
||||
Q_EMIT ready(m_url, QImage(m_url));
|
||||
}
|
||||
#include "file-search-plugin.moc"
|
||||
|
|
|
@ -80,49 +80,49 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>ཡིག་ཆའི་ཐབས་ལམ་འབྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>ཡིག་ཆའི་དཀར་ཆག་ལ་ཞིབ་བཤེར་དང་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>ཡིག་ཆའི་དཀར་ཆག་ལ་ཞིབ་བཤེར་དང་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>དཀར་ཆག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>ལམ་ཐིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ཐེངས་སྔ་མའི་བཟོ་བཅོས་དུས་ཚོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
|
@ -130,54 +130,54 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="669"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="670"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>ཡིག་ཆའི་ཐབས་ལམ་འབྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="454"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>ཡིག་ཆའི་ནང་དོན་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="459"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>ཡིག་ཆའི་ནང་དོན་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="532"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="536"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>ཡིག་ཆ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="647"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>ལམ་ཐིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="659"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ཐེངས་སྔ་མའི་བཟོ་བཅོས་དུས་ཚོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="671"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
|
@ -199,35 +199,35 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>ཡིག་ཆའི་ཐབས་ལམ་འབྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>ཡིག་ཆ་འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>ཡིག་ཆ་འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation>རེད།</translation>
|
||||
</message>
|
||||
|
@ -236,28 +236,28 @@
|
|||
<translation type="vanished">རེད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>བཀོལ་སྤྱོད་ཀྱི་གོ་རིམ་མེད་ན་ཁ་ཕྱེ་ཆོག།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>ཡིག་ཆ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>ལམ་ཐིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ཐེངས་སྔ་མའི་བཟོ་བཅོས་དུས་ཚོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="147"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="139"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation>Inhaltsindex unvollständig.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="157"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="149"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation>Warnung: Der Startpfad kann nicht gefunden werden.</translation>
|
||||
</message>
|
||||
|
@ -31,42 +31,42 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="245"/>
|
||||
<source>Open</source>
|
||||
<translation>Offen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="246"/>
|
||||
<source>Add Shortcut to Desktop</source>
|
||||
<translation>Verknüpfung zum Desktop hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="247"/>
|
||||
<source>Add Shortcut to Panel</source>
|
||||
<translation>Verknüpfung zum Bedienfeld hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="248"/>
|
||||
<source>Install</source>
|
||||
<translation>Installieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="64"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="69"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="63"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="68"/>
|
||||
<source>Applications Search</source>
|
||||
<translation>Anwendungen Suche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="152"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="153"/>
|
||||
<source>Application</source>
|
||||
<translation>Anwendung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="194"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="196"/>
|
||||
<source>Application Description:</source>
|
||||
<translation>Anwendungsbeschreibung:</translation>
|
||||
</message>
|
||||
|
@ -74,12 +74,12 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="52"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="55"/>
|
||||
<source>Application</source>
|
||||
<translation>Anwendung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="57"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="60"/>
|
||||
<source>Application search.</source>
|
||||
<translation>Suche nach Anwendungen.</translation>
|
||||
</message>
|
||||
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>Offen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>Offener Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Pfad kopieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>Dir-Suche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>Verzeichnis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>Dir-Suche.</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Zuletzt geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Pfad kopieren</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="648"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>Offen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="649"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>Offener Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Pfad kopieren</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="445"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>Suche nach Dateiinhalten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>Suche nach Dateiinhalten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="511"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="515"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="638"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Zuletzt geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="650"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Pfad kopieren</translation>
|
||||
</message>
|
||||
|
@ -214,61 +214,65 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>Offen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>Offener Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Pfad kopieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>Datei-Suche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>Dateisuche.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<source>Yes</source>
|
||||
<translation>Ja</translation>
|
||||
<translation type="vanished">Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>Es kann keine Standardanwendung zum Öffnen von %1 abgerufen werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>Pfad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Zuletzt geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Pfad kopieren</translation>
|
||||
</message>
|
||||
|
@ -276,45 +280,55 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="357"/>
|
||||
<source>From</source>
|
||||
<translation type="vanished">发件人</translation>
|
||||
<translation>发件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="358"/>
|
||||
<source>Time</source>
|
||||
<translation type="vanished">时间</translation>
|
||||
<translation>时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="359"/>
|
||||
<source>To</source>
|
||||
<translation type="vanished">收件人</translation>
|
||||
<translation>收件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="360"/>
|
||||
<source>Cc</source>
|
||||
<translation type="vanished">抄送人</translation>
|
||||
<translation>抄送人</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="48"/>
|
||||
<source>open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="57"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="62"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="67"/>
|
||||
<source>Mail Search</source>
|
||||
<translation type="vanished">邮件搜索</translation>
|
||||
<translation>邮件搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="114"/>
|
||||
<source>Mail</source>
|
||||
<translation type="vanished">邮件</translation>
|
||||
<translation>邮件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="251"/>
|
||||
<source>Open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="239"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="238"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation>Hinweis Beschreibung:</translation>
|
||||
|
@ -323,27 +337,27 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="177"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="176"/>
|
||||
<source>Open</source>
|
||||
<translatorcomment>打开</translatorcomment>
|
||||
<translation>Offen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="52"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="155"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="51"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="154"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation>Notiz Suche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="47"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="46"/>
|
||||
<source>Note Search.</source>
|
||||
<translatorcomment>便签.</translatorcomment>
|
||||
<translation>Notiz Suche.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="129"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation>Anwendung</translation>
|
||||
|
@ -442,7 +456,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="102"/>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="106"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation>Aktueller Task-uuid-Fehler oder ein nicht registriertes Plugin wird verwendet!</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="147"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="139"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation>Índice de contenido incompleto.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="157"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="149"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation>Advertencia, no se puede encontrar la ruta de inicio.</translation>
|
||||
</message>
|
||||
|
@ -31,42 +31,42 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="245"/>
|
||||
<source>Open</source>
|
||||
<translation>Abrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="246"/>
|
||||
<source>Add Shortcut to Desktop</source>
|
||||
<translation>Agregar acceso directo al escritorio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="247"/>
|
||||
<source>Add Shortcut to Panel</source>
|
||||
<translation>Agregar acceso directo al panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="248"/>
|
||||
<source>Install</source>
|
||||
<translation>Instalar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="64"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="69"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="63"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="68"/>
|
||||
<source>Applications Search</source>
|
||||
<translation>Búsqueda de aplicaciones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="152"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="153"/>
|
||||
<source>Application</source>
|
||||
<translation>Aplicación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="194"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="196"/>
|
||||
<source>Application Description:</source>
|
||||
<translation>Descripción de la aplicación:</translation>
|
||||
</message>
|
||||
|
@ -74,12 +74,12 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="52"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="55"/>
|
||||
<source>Application</source>
|
||||
<translation>Aplicación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="57"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="60"/>
|
||||
<source>Application search.</source>
|
||||
<translation>Búsqueda de aplicaciones.</translation>
|
||||
</message>
|
||||
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>Abrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>Ruta abierta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Ruta de copia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>Búsqueda de directorios</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>Directorio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>Búsqueda de directorios.</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>Camino</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Última modificación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Ruta de copia</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="648"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>Abrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="649"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>Ruta abierta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Ruta de copia</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="445"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>Búsqueda de contenido de archivos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>Búsqueda de contenido de archivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="511"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="515"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>Camino</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="638"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Última modificación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="650"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Ruta de copia</translation>
|
||||
</message>
|
||||
|
@ -214,61 +214,65 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>Abrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>Ruta abierta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Ruta de copia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>Búsqueda de archivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>Búsqueda de archivos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<source>Yes</source>
|
||||
<translation>Sí</translation>
|
||||
<translation type="vanished">Sí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>No se puede obtener una aplicación predeterminada para abrir %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>Camino</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Última modificación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Ruta de copia</translation>
|
||||
</message>
|
||||
|
@ -276,45 +280,55 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="357"/>
|
||||
<source>From</source>
|
||||
<translation type="vanished">发件人</translation>
|
||||
<translation>发件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="358"/>
|
||||
<source>Time</source>
|
||||
<translation type="vanished">时间</translation>
|
||||
<translation>时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="359"/>
|
||||
<source>To</source>
|
||||
<translation type="vanished">收件人</translation>
|
||||
<translation>收件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="360"/>
|
||||
<source>Cc</source>
|
||||
<translation type="vanished">抄送人</translation>
|
||||
<translation>抄送人</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="48"/>
|
||||
<source>open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="57"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="62"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="67"/>
|
||||
<source>Mail Search</source>
|
||||
<translation type="vanished">邮件搜索</translation>
|
||||
<translation>邮件搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="114"/>
|
||||
<source>Mail</source>
|
||||
<translation type="vanished">邮件</translation>
|
||||
<translation>邮件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="251"/>
|
||||
<source>Open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="239"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="238"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation>Descripción de la nota:</translation>
|
||||
|
@ -323,27 +337,27 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="177"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="176"/>
|
||||
<source>Open</source>
|
||||
<translatorcomment>打开</translatorcomment>
|
||||
<translation>Abrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="52"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="155"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="51"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="154"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation>Búsqueda de notas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="47"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="46"/>
|
||||
<source>Note Search.</source>
|
||||
<translatorcomment>便签.</translatorcomment>
|
||||
<translation>Búsqueda de notas.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="129"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation>Aplicación</translation>
|
||||
|
@ -442,7 +456,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="102"/>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="106"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation>¡Se utiliza un error uuid de tarea actual o un complemento no registrado!</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="147"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="139"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation>Index de contenu incomplet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="157"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="149"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation>Attention, impossible de trouver le chemin d’accueil.</translation>
|
||||
</message>
|
||||
|
@ -31,42 +31,42 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="245"/>
|
||||
<source>Open</source>
|
||||
<translation>Ouvrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="246"/>
|
||||
<source>Add Shortcut to Desktop</source>
|
||||
<translation>Ajouter un raccourci au bureau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="247"/>
|
||||
<source>Add Shortcut to Panel</source>
|
||||
<translation>Ajouter un raccourci au panneau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="248"/>
|
||||
<source>Install</source>
|
||||
<translation>Installer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="64"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="69"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="63"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="68"/>
|
||||
<source>Applications Search</source>
|
||||
<translation>Recherche d’applications</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="152"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="153"/>
|
||||
<source>Application</source>
|
||||
<translation>Application</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="194"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="196"/>
|
||||
<source>Application Description:</source>
|
||||
<translation>Description de l’application :</translation>
|
||||
</message>
|
||||
|
@ -74,12 +74,12 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="52"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="55"/>
|
||||
<source>Application</source>
|
||||
<translation>Application</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="57"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="60"/>
|
||||
<source>Application search.</source>
|
||||
<translation>Recherche d’applications.</translation>
|
||||
</message>
|
||||
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>Ouvrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>Chemin ouvert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Copier le chemin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>Recherche de répertoire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>Répertoire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>Recherche de répertoire.</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>Chemin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Dernière modification</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Copier le chemin d’accès</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="648"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>Ouvrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="649"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>Chemin ouvert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Copier le chemin</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="445"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>Recherche de contenu de fichier.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>Recherche dans le contenu d’un fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="511"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="515"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>Lime</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>Chemin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="638"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Dernière modification</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="650"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Copier le chemin d’accès</translation>
|
||||
</message>
|
||||
|
@ -214,61 +214,65 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>Ouvrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>Chemin ouvert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Copier le chemin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>Recherche de fichiers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>Recherche de fichiers.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<source>Yes</source>
|
||||
<translation>Oui</translation>
|
||||
<translation type="vanished">Oui</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>Impossible d’obtenir une application par défaut pour l’ouverture de %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>Lime</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>Chemin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Dernière modification</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Copier le chemin d’accès</translation>
|
||||
</message>
|
||||
|
@ -276,45 +280,55 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="357"/>
|
||||
<source>From</source>
|
||||
<translation type="vanished">发件人</translation>
|
||||
<translation>发件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="358"/>
|
||||
<source>Time</source>
|
||||
<translation type="vanished">时间</translation>
|
||||
<translation>时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="359"/>
|
||||
<source>To</source>
|
||||
<translation type="vanished">收件人</translation>
|
||||
<translation>收件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="360"/>
|
||||
<source>Cc</source>
|
||||
<translation type="vanished">抄送人</translation>
|
||||
<translation>抄送人</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="48"/>
|
||||
<source>open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="57"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="62"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="67"/>
|
||||
<source>Mail Search</source>
|
||||
<translation type="vanished">邮件搜索</translation>
|
||||
<translation>邮件搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="114"/>
|
||||
<source>Mail</source>
|
||||
<translation type="vanished">邮件</translation>
|
||||
<translation>邮件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="251"/>
|
||||
<source>Open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="239"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="238"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation>Description de la note :</translation>
|
||||
|
@ -323,27 +337,27 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="177"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="176"/>
|
||||
<source>Open</source>
|
||||
<translatorcomment>打开</translatorcomment>
|
||||
<translation>Ouvrir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="52"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="155"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="51"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="154"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation>Recherche de notes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="47"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="46"/>
|
||||
<source>Note Search.</source>
|
||||
<translatorcomment>便签.</translatorcomment>
|
||||
<translation>Recherche de notes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="129"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation>Application</translation>
|
||||
|
@ -442,7 +456,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="102"/>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="106"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation>Erreur uuid de la tâche en cours ou un plugin non enregistré est utilisé !</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="112"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="139"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation>Мазмұн индексі толық емес.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="96"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="149"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation>Ескерту, Үй жолын таба алмаңыз.</translation>
|
||||
</message>
|
||||
|
@ -24,62 +24,62 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="306"/>
|
||||
<source>Application Description:</source>
|
||||
<translation>Өтінім сипаттамасы:</translation>
|
||||
<translation type="vanished">Өтінім сипаттамасы:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="11"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="182"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="245"/>
|
||||
<source>Open</source>
|
||||
<translation>Ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="12"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="183"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="246"/>
|
||||
<source>Add Shortcut to Desktop</source>
|
||||
<translation>Жұмыс үстеліне пернелер тіркесімін қосу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="13"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="247"/>
|
||||
<source>Add Shortcut to Panel</source>
|
||||
<translation>Панельге пернелер тіркесімін қосу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="14"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="248"/>
|
||||
<source>Install</source>
|
||||
<translation>Орнату</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="38"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="43"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="63"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="68"/>
|
||||
<source>Applications Search</source>
|
||||
<translation>Бағдарламаларды іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="123"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="153"/>
|
||||
<source>Application</source>
|
||||
<translation>Қолданба</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="196"/>
|
||||
<source>Application Description:</source>
|
||||
<translation type="vanished">应用描述:</translation>
|
||||
<translation>应用描述:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="21"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="55"/>
|
||||
<source>Application</source>
|
||||
<translation>Қолданба</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="26"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="60"/>
|
||||
<source>Application search.</source>
|
||||
<translation>Қолданба іздеу.</translation>
|
||||
</message>
|
||||
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="224"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>Ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="225"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="365"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>Жолды ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="226"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Жолды көшіру</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>Dir іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="305"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>Каталог</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="240"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>Dir іздеу.</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="342"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>Жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="354"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Соңғы рет өзгертілген</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="366"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Көшіру жолы</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="407"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="624"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>Ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="408"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="625"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>Жолды ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="409"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Жолды көшіру</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="423"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>Файл мазмұнын іздеу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>Файл мазмұнын іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="486"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="491"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>Файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="602"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>Жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="614"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Соңғы рет өзгертілген</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Көшіру жолы</translation>
|
||||
</message>
|
||||
|
@ -200,13 +200,13 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContentSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="40"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="65"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="62"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="87"/>
|
||||
<source>File Content</source>
|
||||
<translation>Файл мазмұны</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="45"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="67"/>
|
||||
<source>File Content Search</source>
|
||||
<translation>Файл мазмұнын іздеу</translation>
|
||||
</message>
|
||||
|
@ -214,61 +214,65 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="14"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="164"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>Ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="15"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="165"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>Жолды ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="16"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Жолды көшіру</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>Файлды іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>Файлды іздеу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="77"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="189"/>
|
||||
<source>Yes</source>
|
||||
<translation>Иә</translation>
|
||||
<translation type="vanished">Иә</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="79"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="191"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>% 1 дегенді ашу үшін әдепкі қолданба алынбады.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="105"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>Файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="142"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>Жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="154"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Соңғы рет өзгертілген</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="166"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Көшіру жолы</translation>
|
||||
</message>
|
||||
|
@ -276,22 +280,22 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="337"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="357"/>
|
||||
<source>From</source>
|
||||
<translation>Кідiрiсi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="338"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="358"/>
|
||||
<source>Time</source>
|
||||
<translation>Уақыт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="339"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="359"/>
|
||||
<source>To</source>
|
||||
<translation>Кідірту</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="340"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="360"/>
|
||||
<source>Cc</source>
|
||||
<translation>CC</translation>
|
||||
</message>
|
||||
|
@ -299,24 +303,24 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="28"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="48"/>
|
||||
<source>open</source>
|
||||
<translation>ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="37"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="42"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="47"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="57"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="62"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="67"/>
|
||||
<source>Mail Search</source>
|
||||
<translation>Пошта іздеуі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="94"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="114"/>
|
||||
<source>Mail</source>
|
||||
<translation>Пошта</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="231"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="251"/>
|
||||
<source>Open</source>
|
||||
<translation>Ашу</translation>
|
||||
</message>
|
||||
|
@ -324,7 +328,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="190"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="238"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation>Ескертпенің сипаттамасы:</translation>
|
||||
|
@ -333,27 +337,27 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="12"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="176"/>
|
||||
<source>Open</source>
|
||||
<translatorcomment>打开</translatorcomment>
|
||||
<translation>Ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="106"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="51"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="154"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation>Жазбаны іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="26"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="46"/>
|
||||
<source>Note Search.</source>
|
||||
<translatorcomment>便签.</translatorcomment>
|
||||
<translation>Ескертуді іздеу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="80"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation>Қолданба</translation>
|
||||
|
@ -373,63 +377,119 @@
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<name>UkuiSearch::SearchResultPropertyInfo</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="68"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="82"/>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation>плагин түрі:% 1, өшірілген!</translation>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="26"/>
|
||||
<source>file path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="32"/>
|
||||
<source>file name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="38"/>
|
||||
<source>file icon name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="44"/>
|
||||
<source>modified time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="50"/>
|
||||
<source>application desktop file path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="56"/>
|
||||
<source>application local name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="62"/>
|
||||
<source>application icon name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="68"/>
|
||||
<source>application description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="74"/>
|
||||
<source>is online application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="80"/>
|
||||
<source>application package name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<message>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation type="vanished">плагин түрі:% 1, өшірілген!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="74"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="87"/>
|
||||
<source>plugin type: %1, is not registered!</source>
|
||||
<translation>плагин түрі:% 1, тіркелмеген!</translation>
|
||||
<translation type="vanished">плагин түрі:% 1, тіркелмеген!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SettingsSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="15"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="128"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="19"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="158"/>
|
||||
<source>Open</source>
|
||||
<translation>Ашу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="39"/>
|
||||
<source>Settings Search</source>
|
||||
<translation>Параметрлерді іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="34"/>
|
||||
<source>Settings search.</source>
|
||||
<translation>Параметрлерді іздеу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="117"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="147"/>
|
||||
<source>Settings</source>
|
||||
<translation>Параметрлер</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="106"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation type="unfinished">Ағымдағы тапсырма uuid қатесі немесе тіркелмеген плагин қолданылады!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTaskPrivate</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="91"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation>Ағымдағы тапсырма uuid қатесі немесе тіркелмеген плагин қолданылады!</translation>
|
||||
<translation type="vanished">Ағымдағы тапсырма uuid қатесі немесе тіркелмеген плагин қолданылады!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="10"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="114"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="28"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="158"/>
|
||||
<source>Start browser search</source>
|
||||
<translation>Браузерді іздеуді бастау</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="22"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="27"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="40"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="45"/>
|
||||
<source>Web Page</source>
|
||||
<translation>Веб-бет</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="112"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="139"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation>Мазмун индекси толук эмес.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="96"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="149"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation>Эскертүү, үй жолун табууга болбойт.</translation>
|
||||
</message>
|
||||
|
@ -24,62 +24,62 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="306"/>
|
||||
<source>Application Description:</source>
|
||||
<translation>Колдонмо сүрөттөлүшү:</translation>
|
||||
<translation type="vanished">Колдонмо сүрөттөлүшү:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="11"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="182"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="245"/>
|
||||
<source>Open</source>
|
||||
<translation>Ачуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="12"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="183"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="246"/>
|
||||
<source>Add Shortcut to Desktop</source>
|
||||
<translation>Иш столуна кыска жолду кошуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="13"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="247"/>
|
||||
<source>Add Shortcut to Panel</source>
|
||||
<translation>Панелге кыска жолду кошуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="14"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="248"/>
|
||||
<source>Install</source>
|
||||
<translation>Орнотуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="38"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="43"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="63"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="68"/>
|
||||
<source>Applications Search</source>
|
||||
<translation>Иштемелерди издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="123"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="153"/>
|
||||
<source>Application</source>
|
||||
<translation>Тиркеме</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="196"/>
|
||||
<source>Application Description:</source>
|
||||
<translation type="vanished">应用描述:</translation>
|
||||
<translation>应用描述:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="21"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="55"/>
|
||||
<source>Application</source>
|
||||
<translation>Тиркеме</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="26"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="60"/>
|
||||
<source>Application search.</source>
|
||||
<translation>Тиркемени издөө.</translation>
|
||||
</message>
|
||||
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="224"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>Ачуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="225"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="365"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>Ачык жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="226"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Көчүрүү жолу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>Кир издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="305"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>Каталог</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="240"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>Кир издөө.</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="342"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>Жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="354"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Акыркы жолу өзгөртүлүп берилди</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="366"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Көчүрмө жолу</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="407"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="624"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>Ачуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="408"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="625"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>Ачык жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="409"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Көчүрүү жолу</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="423"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>Файлдын мазмунун издөө.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>Файлдын мазмунун издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="486"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>ОКР</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="491"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>Файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="602"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>Жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="614"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Акыркы жолу өзгөртүлүп берилди</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Көчүрмө жолу</translation>
|
||||
</message>
|
||||
|
@ -200,13 +200,13 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContentSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="40"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="65"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="62"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="87"/>
|
||||
<source>File Content</source>
|
||||
<translation>Файлдын мазмуну</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="45"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="67"/>
|
||||
<source>File Content Search</source>
|
||||
<translation>Файлдын мазмунун издөө</translation>
|
||||
</message>
|
||||
|
@ -214,61 +214,65 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="14"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="164"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>Ачуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="15"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="165"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>Ачык жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="16"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>Көчүрүү жолу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>Файл издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>Файлды издөө.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="77"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="189"/>
|
||||
<source>Yes</source>
|
||||
<translation>Ооба</translation>
|
||||
<translation type="vanished">Ооба</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="79"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="191"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>%1 ачуу үчүн дефолт өтүнмө ала албайт.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="105"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>Файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="142"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>Жол</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="154"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>Акыркы жолу өзгөртүлүп берилди</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="166"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>Көчүрмө жолу</translation>
|
||||
</message>
|
||||
|
@ -276,22 +280,22 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="337"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="357"/>
|
||||
<source>From</source>
|
||||
<translation>баштап</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="338"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="358"/>
|
||||
<source>Time</source>
|
||||
<translation>Убакыт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="339"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="359"/>
|
||||
<source>To</source>
|
||||
<translation>үчүн</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="340"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="360"/>
|
||||
<source>Cc</source>
|
||||
<translation>КК</translation>
|
||||
</message>
|
||||
|
@ -299,24 +303,24 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="28"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="48"/>
|
||||
<source>open</source>
|
||||
<translation>ачык</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="37"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="42"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="47"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="57"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="62"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="67"/>
|
||||
<source>Mail Search</source>
|
||||
<translation>Почта издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="94"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="114"/>
|
||||
<source>Mail</source>
|
||||
<translation>Почта</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="231"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="251"/>
|
||||
<source>Open</source>
|
||||
<translation>Ачуу</translation>
|
||||
</message>
|
||||
|
@ -324,7 +328,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="190"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="238"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation>Эскертүү Сүрөттөлүшү:</translation>
|
||||
|
@ -333,27 +337,27 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="12"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="176"/>
|
||||
<source>Open</source>
|
||||
<translatorcomment>打开</translatorcomment>
|
||||
<translation>Ачуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="106"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="51"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="154"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation>Эскертүү Издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="26"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="46"/>
|
||||
<source>Note Search.</source>
|
||||
<translatorcomment>便签.</translatorcomment>
|
||||
<translation>Эскертүү Издөө.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="80"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation>Тиркеме</translation>
|
||||
|
@ -373,63 +377,119 @@
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<name>UkuiSearch::SearchResultPropertyInfo</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="68"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="82"/>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation>плагин түрү: %1, майып!</translation>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="26"/>
|
||||
<source>file path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="32"/>
|
||||
<source>file name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="38"/>
|
||||
<source>file icon name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="44"/>
|
||||
<source>modified time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="50"/>
|
||||
<source>application desktop file path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="56"/>
|
||||
<source>application local name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="62"/>
|
||||
<source>application icon name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="68"/>
|
||||
<source>application description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="74"/>
|
||||
<source>is online application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="80"/>
|
||||
<source>application package name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<message>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation type="vanished">плагин түрү: %1, майып!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="74"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="87"/>
|
||||
<source>plugin type: %1, is not registered!</source>
|
||||
<translation>плагин түрү: %1, катталган эмес!</translation>
|
||||
<translation type="vanished">плагин түрү: %1, катталган эмес!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SettingsSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="15"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="128"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="19"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="158"/>
|
||||
<source>Open</source>
|
||||
<translation>Ачуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="39"/>
|
||||
<source>Settings Search</source>
|
||||
<translation>Издөө параметрлери</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="34"/>
|
||||
<source>Settings search.</source>
|
||||
<translation>Издөө параметрлери.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="117"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="147"/>
|
||||
<source>Settings</source>
|
||||
<translation>Параметрлер</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="106"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation type="unfinished">Учурдагы тапшырма уид катасы же каттоодон өткөн плагин колдонулат!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTaskPrivate</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="91"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation>Учурдагы тапшырма уид катасы же каттоодон өткөн плагин колдонулат!</translation>
|
||||
<translation type="vanished">Учурдагы тапшырма уид катасы же каттоодон өткөн плагин колдонулат!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="10"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="114"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="28"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="158"/>
|
||||
<source>Start browser search</source>
|
||||
<translation>Браузер издөө баштоо</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="22"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="27"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="40"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="45"/>
|
||||
<source>Web Page</source>
|
||||
<translation>Веб-барак</translation>
|
||||
</message>
|
||||
|
|
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>ᠨᠡᠬᠡᠬᠡᠬᠦ᠌</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>ᠹᠠᠢᠯᠤᠨ ᠪᠠᠢᠭᠠ ᠵᠠᠮᠢ ᠨᠡᠬᠡᠬᠡᠬᠦ᠌</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ᠵᠠᠮᠢ ᠬᠠᠭᠤᠯᠪᠤᠷᠢᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>ᠭᠠᠷᠴᠠᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>ᠭᠠᠷᠴᠠᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>ᠭᠠᠷᠴᠠᠭᠤᠨ ᠬᠠᠢᠯᠲᠠ</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>ᠵᠠᠮ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ᠳᠡᠭᠡᠷᠡ ᠤᠳᠠᠭᠠᠶᠢᠨ ᠵᠠᠰᠠᠭᠰᠠᠨ ᠴᠠᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ᠵᠠᠮᠢ ᠬᠠᠭᠤᠯᠪᠤᠷᠢᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="669"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>ᠨᠡᠬᠡᠬᠡᠬᠦ᠌</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="670"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>ᠹᠠᠢᠯᠤᠨ ᠪᠠᠢᠭᠠ ᠵᠠᠮᠢ ᠨᠡᠬᠡᠬᠡᠬᠦ᠌</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ᠹᠠᠢᠯᠤᠨ ᠵᠠᠮᠢ ᠬᠠᠭᠤᠯᠪᠤᠷᠢᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="454"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>ᠲᠸᠺᠰᠲᠦᠨ ᠠᠭᠤᠯᠭᠠᠶᠢ ᠬᠠᠢᠬᠤ᠃</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="459"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>ᠲᠸᠺᠰᠲᠦᠨ ᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="532"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="536"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>ᠹᠠᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="647"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>ᠵᠠᠮ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="659"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ᠳᠡᠭᠡᠷᠡ ᠤᠳᠠᠭᠠᠶᠢᠨ ᠵᠠᠰᠠᠭᠰᠠᠨ ᠴᠠᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="671"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ᠹᠠᠢᠯᠤᠨ ᠵᠠᠮᠢ ᠬᠠᠭᠤᠯᠪᠤᠷᠢᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
|
@ -214,29 +214,29 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>ᠨᠡᠬᠡᠬᠡᠬᠦ᠌</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>ᠹᠠᠢᠯᠤᠨ ᠪᠠᠢᠭᠠ ᠵᠠᠮᠢ ᠨᠡᠬᠡᠬᠡᠬᠦ᠌</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ᠵᠠᠮᠢ ᠬᠠᠭᠤᠯᠪᠤᠷᠢᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>ᠹᠠᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>ᠹᠠᠢᠯᠤᠨ ᠬᠠᠢᠯᠲᠠ</translation>
|
||||
</message>
|
||||
|
@ -245,34 +245,34 @@
|
|||
<translation type="vanished">Yes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation>ᠪᠣᠯᠣᠨᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>ᠠᠶᠠᠳᠠᠯ ᠨᠡᠬᠡᠬᠡᠬᠦ᠌%1ᠶᠢᠨ ᠬᠡᠷᠡᠭᠯᠡᠯᠳᠡᠶᠢ ᠡᠷᠢᠵᠤ ᠤᠯᠤᠭᠰᠠᠨ ᠦᠬᠡᠢ ᠃</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>ᠹᠠᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>ᠵᠠᠮ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ᠳᠡᠭᠡᠷᠡ ᠤᠳᠠᠭᠠᠶᠢᠨ ᠵᠠᠰᠠᠭᠰᠠᠨ ᠴᠠᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ᠵᠠᠮᠢ ᠬᠠᠭᠤᠯᠪᠤᠷᠢᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="147"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="139"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="157"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="149"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -31,55 +31,55 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="245"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="246"/>
|
||||
<source>Add Shortcut to Desktop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="247"/>
|
||||
<source>Add Shortcut to Panel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="248"/>
|
||||
<source>Install</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="64"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="69"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="63"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="68"/>
|
||||
<source>Applications Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="152"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="153"/>
|
||||
<source>Application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="194"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="196"/>
|
||||
<source>Application Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">应用描述:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="52"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="55"/>
|
||||
<source>Application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="57"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="60"/>
|
||||
<source>Application search.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="648"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="649"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="445"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="511"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="515"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="638"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="650"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -208,67 +208,67 @@
|
|||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="67"/>
|
||||
<source>File Content Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">文本内容搜索</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<source>Yes</source>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -276,45 +276,55 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="357"/>
|
||||
<source>From</source>
|
||||
<translation type="vanished">发件人</translation>
|
||||
<translation>发件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="358"/>
|
||||
<source>Time</source>
|
||||
<translation type="vanished">时间</translation>
|
||||
<translation>时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="359"/>
|
||||
<source>To</source>
|
||||
<translation type="vanished">收件人</translation>
|
||||
<translation>收件人</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="360"/>
|
||||
<source>Cc</source>
|
||||
<translation type="vanished">抄送人</translation>
|
||||
<translation>抄送人</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="48"/>
|
||||
<source>open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="57"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="62"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="67"/>
|
||||
<source>Mail Search</source>
|
||||
<translation type="vanished">邮件搜索</translation>
|
||||
<translation>邮件搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="114"/>
|
||||
<source>Mail</source>
|
||||
<translation type="vanished">邮件</translation>
|
||||
<translation>邮件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="251"/>
|
||||
<source>Open</source>
|
||||
<translation type="vanished">打开</translation>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="239"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="238"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -323,27 +333,27 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="177"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="176"/>
|
||||
<source>Open</source>
|
||||
<translatorcomment>打开</translatorcomment>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="52"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="155"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="51"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="154"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="47"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="46"/>
|
||||
<source>Note Search.</source>
|
||||
<translatorcomment>便签.</translatorcomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="129"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -421,7 +431,7 @@
|
|||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="19"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="158"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="39"/>
|
||||
|
@ -442,7 +452,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="102"/>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="106"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="112"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="139"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation>مەزمۇن كۆرسەتكۈچى تولۇق ئەمەس.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="96"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="149"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation>دىققەت، ئائىلە يولىنى تاپقىلى بولمايدۇ.</translation>
|
||||
</message>
|
||||
|
@ -24,62 +24,62 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="306"/>
|
||||
<source>Application Description:</source>
|
||||
<translation>ئىلتىماس چۈشەندۈرۈشى:</translation>
|
||||
<translation type="vanished">ئىلتىماس چۈشەندۈرۈشى:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="11"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="182"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="245"/>
|
||||
<source>Open</source>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="12"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="183"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="246"/>
|
||||
<source>Add Shortcut to Desktop</source>
|
||||
<translation>ئۈستەلئۈستىگە قىسقارتىش قوشۇش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="13"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="247"/>
|
||||
<source>Add Shortcut to Panel</source>
|
||||
<translation>Panelگە قىسقارتىش قوشۇش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="14"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="33"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="248"/>
|
||||
<source>Install</source>
|
||||
<translation>قاچىلاش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="38"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="43"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="63"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="68"/>
|
||||
<source>Applications Search</source>
|
||||
<translation>پروگراممىلارنى ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="123"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="153"/>
|
||||
<source>Application</source>
|
||||
<translation>ئىلتىماس قىلىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="196"/>
|
||||
<source>Application Description:</source>
|
||||
<translation type="vanished">应用描述:</translation>
|
||||
<translation>应用描述:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="21"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="55"/>
|
||||
<source>Application</source>
|
||||
<translation>ئىلتىماس قىلىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="26"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="60"/>
|
||||
<source>Application search.</source>
|
||||
<translation>قوللىنىشچان ئىزدەش.</translation>
|
||||
</message>
|
||||
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="224"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="225"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="365"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>ئوچۇق يول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="226"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>كۆچۈرۈش يولى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>Dir Search</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="305"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>مۇندەرىجىسى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="240"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>دۇرا ئىزدەش</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="342"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>يول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="354"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ئاخىرقى قېتىم ئۆزگەرتىلگەن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="366"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>كۆچۈرۈش يولى</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="407"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="624"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="408"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="625"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>ئوچۇق يول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="409"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>كۆچۈرۈش يولى</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="423"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>ھۆججەت مەزمۇنىنى ئىزدەش.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>ھۆججەت مەزمۇنىنى ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="486"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="491"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>ھۆججەت</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="602"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>يول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="614"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ئاخىرقى قېتىم ئۆزگەرتىلگەن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>كۆچۈرۈش يولى</translation>
|
||||
</message>
|
||||
|
@ -200,13 +200,13 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContentSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="40"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="65"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="62"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="87"/>
|
||||
<source>File Content</source>
|
||||
<translation>ھۆججەت مەزمۇنى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="45"/>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="67"/>
|
||||
<source>File Content Search</source>
|
||||
<translation>ھۆججەت مەزمۇن ئىزدەش</translation>
|
||||
</message>
|
||||
|
@ -214,61 +214,65 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="14"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="164"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="15"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="165"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>ئوچۇق يول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="16"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>كۆچۈرۈش يولى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>ھۆججەت ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>ھۆججەت ئىزدەش.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="77"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="189"/>
|
||||
<source>Yes</source>
|
||||
<translation>شۇنداق</translation>
|
||||
<translation type="vanished">شۇنداق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="79"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="191"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>٪1 نى ئېچىشقا كۆڭۈلدىكىدەك قوللىنىشقا ئېرىشەلمىدى.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="105"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>ھۆججەت</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="142"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>يول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="154"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ئاخىرقى قېتىم ئۆزگەرتىلگەن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="166"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>كۆچۈرۈش يولى</translation>
|
||||
</message>
|
||||
|
@ -276,22 +280,22 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="337"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="357"/>
|
||||
<source>From</source>
|
||||
<translation>ئۇنىڭدىن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="338"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="358"/>
|
||||
<source>Time</source>
|
||||
<translation>ۋاقتىدا</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="339"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="359"/>
|
||||
<source>To</source>
|
||||
<translation>تو</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="340"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="360"/>
|
||||
<source>Cc</source>
|
||||
<translation>cc</translation>
|
||||
</message>
|
||||
|
@ -299,24 +303,24 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="28"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="48"/>
|
||||
<source>open</source>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="37"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="42"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="47"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="57"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="62"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="67"/>
|
||||
<source>Mail Search</source>
|
||||
<translation>ئېلخەت ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="94"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="114"/>
|
||||
<source>Mail</source>
|
||||
<translation>پوچتا يوللانمىسى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="231"/>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="251"/>
|
||||
<source>Open</source>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
|
@ -324,7 +328,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="190"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="238"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation>ئەسكەرتىش:</translation>
|
||||
|
@ -333,27 +337,27 @@
|
|||
<context>
|
||||
<name>UkuiSearch::NoteSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="12"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="32"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="176"/>
|
||||
<source>Open</source>
|
||||
<translatorcomment>打开</translatorcomment>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="106"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="51"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="154"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation>ئەسكەرتىش ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="26"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="46"/>
|
||||
<source>Note Search.</source>
|
||||
<translatorcomment>便签.</translatorcomment>
|
||||
<translation>ئەسكەرتىش ئىزدە.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="80"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="128"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation>ئىلتىماس قىلىش</translation>
|
||||
|
@ -373,63 +377,119 @@
|
|||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<name>UkuiSearch::SearchResultPropertyInfo</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="68"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="82"/>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation>قىستۇرما تۈرى: ٪1، چەكلەنگەن!</translation>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="26"/>
|
||||
<source>file path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="32"/>
|
||||
<source>file name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="38"/>
|
||||
<source>file icon name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="44"/>
|
||||
<source>modified time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="50"/>
|
||||
<source>application desktop file path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="56"/>
|
||||
<source>application local name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="62"/>
|
||||
<source>application icon name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="68"/>
|
||||
<source>application description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="74"/>
|
||||
<source>is online application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/search-result-property-info.cpp" line="80"/>
|
||||
<source>application package name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<message>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation type="vanished">قىستۇرما تۈرى: ٪1، چەكلەنگەن!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="74"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="87"/>
|
||||
<source>plugin type: %1, is not registered!</source>
|
||||
<translation>قىستۇرما تۈرى: ٪1، تىزىملىتىلدى ئەمەس!</translation>
|
||||
<translation type="vanished">قىستۇرما تۈرى: ٪1، تىزىملىتىلدى ئەمەس!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SettingsSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="15"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="128"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="19"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="158"/>
|
||||
<source>Open</source>
|
||||
<translation>ئېچىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="39"/>
|
||||
<source>Settings Search</source>
|
||||
<translation>تەڭشەك ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="34"/>
|
||||
<source>Settings search.</source>
|
||||
<translation>تەڭشەك ئىزدەش.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="117"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="147"/>
|
||||
<source>Settings</source>
|
||||
<translation>تەڭشەكلەر</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="106"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation type="unfinished">نۆۋەتتىكى ۋەزىپە UUID خاتالىقى ياكى تىزىملىتالمىغان قىستۇرما ئىشلىتىلىدۇ!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchTaskPrivate</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/ukui-search-task.cpp" line="91"/>
|
||||
<source>Current task uuid error or an unregistered plugin is used!</source>
|
||||
<translation>نۆۋەتتىكى ۋەزىپە UUID خاتالىقى ياكى تىزىملىتالمىغان قىستۇرما ئىشلىتىلىدۇ!</translation>
|
||||
<translation type="vanished">نۆۋەتتىكى ۋەزىپە UUID خاتالىقى ياكى تىزىملىتالمىغان قىستۇرما ئىشلىتىلىدۇ!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="10"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="114"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="28"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="158"/>
|
||||
<source>Start browser search</source>
|
||||
<translation>تور كۆرگۈچ ئىزدەشنى باشلاش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="22"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="27"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="40"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="45"/>
|
||||
<source>Web Page</source>
|
||||
<translation>تور بەت</translation>
|
||||
</message>
|
||||
|
|
|
@ -87,34 +87,34 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>打开文件所在路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>复制文件路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>目录搜索。</translation>
|
||||
</message>
|
||||
|
@ -123,17 +123,17 @@
|
|||
<translation type="vanished">目录</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>上次修改时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>复制路径</translation>
|
||||
</message>
|
||||
|
@ -141,19 +141,19 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="669"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="670"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>打开文件所在路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>复制文件路径</translation>
|
||||
</message>
|
||||
|
@ -162,37 +162,37 @@
|
|||
<translation type="vanished">文本内容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="454"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>文本内容搜索。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="459"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>文本内容</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="532"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="536"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="647"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="659"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>上次修改时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="671"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>复制路径</translation>
|
||||
</message>
|
||||
|
@ -214,29 +214,29 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>打开文件所在路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>复制文件路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>文件搜索。</translation>
|
||||
</message>
|
||||
|
@ -245,34 +245,34 @@
|
|||
<translation type="vanished">确定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation>确定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>没有找到默认打开%1的应用。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>上次修改时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>复制路径</translation>
|
||||
</message>
|
||||
|
|
|
@ -73,49 +73,49 @@
|
|||
<context>
|
||||
<name>UkuiSearch::DirSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="302"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="450"/>
|
||||
<source>Open</source>
|
||||
<translation>打開</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="387"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="303"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="451"/>
|
||||
<source>Open path</source>
|
||||
<translation>打開檔所在路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="304"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>複製檔案路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="259"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="318"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>目錄搜索。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="264"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="323"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>目錄搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="327"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="386"/>
|
||||
<source>Directory</source>
|
||||
<translation>目錄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="364"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>Path</source>
|
||||
<translation>路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="376"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="440"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>上次修改時間</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="388"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="452"/>
|
||||
<source>Copy path</source>
|
||||
<translation>複製路徑</translation>
|
||||
</message>
|
||||
|
@ -123,54 +123,54 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileContengSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="429"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="669"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="493"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="738"/>
|
||||
<source>Open</source>
|
||||
<translation>打開</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="430"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="670"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="494"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="739"/>
|
||||
<source>Open path</source>
|
||||
<translation>打開檔所在路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="431"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="495"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>複製檔案路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="454"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="518"/>
|
||||
<source>File content search.</source>
|
||||
<translation>文字內容搜索.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="459"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="523"/>
|
||||
<source>File content search</source>
|
||||
<translation>文字內容搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="532"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="596"/>
|
||||
<source>OCR</source>
|
||||
<translation>光學字元辨識</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="536"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="600"/>
|
||||
<source>File</source>
|
||||
<translation>檔</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="647"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="716"/>
|
||||
<source>Path</source>
|
||||
<translation>路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="659"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="728"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>上次修改時間</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="671"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="740"/>
|
||||
<source>Copy path</source>
|
||||
<translation>複製路徑</translation>
|
||||
</message>
|
||||
|
@ -192,61 +192,61 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FileSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="34"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="184"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="88"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="243"/>
|
||||
<source>Open</source>
|
||||
<translation>打開</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="185"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="89"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="244"/>
|
||||
<source>Open path</source>
|
||||
<translation>打開檔所在路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="36"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="90"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>複製檔案路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="50"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="104"/>
|
||||
<source>File search.</source>
|
||||
<translation>檔搜索。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="55"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="109"/>
|
||||
<source>File Search</source>
|
||||
<translation>檔搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="97"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="208"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="151"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="267"/>
|
||||
<source>OK</source>
|
||||
<translation>確定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="99"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="210"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="153"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="269"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>沒有找到預設打開%1的應用。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="125"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="179"/>
|
||||
<source>File</source>
|
||||
<translation>檔</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="162"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="221"/>
|
||||
<source>Path</source>
|
||||
<translation>路徑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="174"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="233"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>上次修改時間</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="186"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Copy path</source>
|
||||
<translation>複製路徑</translation>
|
||||
</message>
|
||||
|
|
|
@ -1,6 +1,93 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
|
|
|
@ -1,6 +1,93 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="es">
|
||||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
|
|
|
@ -1,6 +1,93 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="fr">
|
||||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
|
|
|
@ -1,6 +1,93 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="kk">
|
||||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
|
|
|
@ -1,6 +1,93 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ky">
|
||||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
|
|
|
@ -1,6 +1,93 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ug">
|
||||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
|
|
|
@ -59,32 +59,45 @@
|
|||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="42"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-Suche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="71"/>
|
||||
<source>Search</source>
|
||||
<translation>Suchen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="94"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="78"/>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="96"/>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="107"/>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you getting results quickly, whether to create or not?</source>
|
||||
<translation>Das Erstellen eines Indexes kann Ihnen helfen, schnell Ergebnisse zu erzielen, unabhängig davon, ob Sie ihn erstellen oder nicht?</translation>
|
||||
<translation type="vanished">Das Erstellen eines Indexes kann Ihnen helfen, schnell Ergebnisse zu erzielen, unabhängig davon, ob Sie ihn erstellen oder nicht?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<translation>Erinnern Sie nicht daran</translation>
|
||||
<translation type="vanished">Erinnern Sie nicht daran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>No</source>
|
||||
<translation>Nein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="120"/>
|
||||
<source>Yes</source>
|
||||
<translation>Ja</translation>
|
||||
</message>
|
||||
|
@ -114,12 +127,17 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="71"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="73"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-Suche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="79"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="81"/>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="84"/>
|
||||
<source>Global Search</source>
|
||||
<translation>Globale Suche</translation>
|
||||
</message>
|
||||
|
@ -192,7 +210,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="57"/>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="53"/>
|
||||
<source>Search</source>
|
||||
<translation>Suchen</translation>
|
||||
</message>
|
||||
|
@ -346,32 +364,32 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="107"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="111"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation>Beenden Sie die Ukui-Suchanwendung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="110"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="114"/>
|
||||
<source>Show main window</source>
|
||||
<translation>Hauptfenster anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="113"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="117"/>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation>Heben Sie die Registrierung eines Plugins mit <pluginName></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="116"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="120"/>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation>Registrieren Sie ein Plugin bei <pluginName></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="119"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="123"/>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation><pluginName> Verschieben zum Ziel-POS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="122"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="126"/>
|
||||
<source>move plugin to <index></source>
|
||||
<translation>Plugin verschieben nach <index></translation>
|
||||
</message>
|
||||
|
|
|
@ -59,32 +59,45 @@
|
|||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="42"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>Búsqueda de ukui</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="71"/>
|
||||
<source>Search</source>
|
||||
<translation>Buscar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="94"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="78"/>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="96"/>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="107"/>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you getting results quickly, whether to create or not?</source>
|
||||
<translation>La creación de un índice puede ayudarlo a obtener resultados rápidamente, ya sea para crear o no.</translation>
|
||||
<translation type="vanished">La creación de un índice puede ayudarlo a obtener resultados rápidamente, ya sea para crear o no.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<translation>No te lo recuerdes</translation>
|
||||
<translation type="vanished">No te lo recuerdes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>No</source>
|
||||
<translation>No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="120"/>
|
||||
<source>Yes</source>
|
||||
<translation>Sí</translation>
|
||||
</message>
|
||||
|
@ -114,12 +127,17 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="71"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="73"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>Búsqueda de ukui</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="79"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="81"/>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="84"/>
|
||||
<source>Global Search</source>
|
||||
<translation>Búsqueda global</translation>
|
||||
</message>
|
||||
|
@ -192,7 +210,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="57"/>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="53"/>
|
||||
<source>Search</source>
|
||||
<translation>Buscar</translation>
|
||||
</message>
|
||||
|
@ -346,32 +364,32 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="107"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="111"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation>Salir de la aplicación ukui-search</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="110"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="114"/>
|
||||
<source>Show main window</source>
|
||||
<translation>Mostrar ventana principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="113"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="117"/>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation>Anular el registro de un plugin con <pluginName></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="116"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="120"/>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation>Registre un complemento con <pluginName></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="119"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="123"/>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation>Desplazarse <pluginName> al PDV de destino</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="122"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="126"/>
|
||||
<source>move plugin to <index></source>
|
||||
<translation>Mover el plugin a <index></translation>
|
||||
</message>
|
||||
|
|
|
@ -59,32 +59,45 @@
|
|||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="42"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-search</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="71"/>
|
||||
<source>Search</source>
|
||||
<translation>Rechercher</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="94"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="78"/>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="96"/>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="107"/>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you getting results quickly, whether to create or not?</source>
|
||||
<translation>La création d’index peut vous aider à obtenir des résultats rapidement, que ce soit pour créer ou non ?</translation>
|
||||
<translation type="vanished">La création d’index peut vous aider à obtenir des résultats rapidement, que ce soit pour créer ou non ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<translation>Ne le rappelez pas</translation>
|
||||
<translation type="vanished">Ne le rappelez pas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>No</source>
|
||||
<translation>Non</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="120"/>
|
||||
<source>Yes</source>
|
||||
<translation>Oui</translation>
|
||||
</message>
|
||||
|
@ -114,12 +127,17 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="71"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="73"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-search</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="79"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="81"/>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="84"/>
|
||||
<source>Global Search</source>
|
||||
<translation>Recherche globale</translation>
|
||||
</message>
|
||||
|
@ -192,7 +210,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="57"/>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="53"/>
|
||||
<source>Search</source>
|
||||
<translation>Rechercher</translation>
|
||||
</message>
|
||||
|
@ -346,32 +364,32 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="107"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="111"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation>Quitter l’application ukui-search</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="110"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="114"/>
|
||||
<source>Show main window</source>
|
||||
<translation>Afficher la fenêtre principale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="113"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="117"/>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation>Annuler l’enregistrement d’un plugin avec <pluginName></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="116"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="120"/>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation>Enregistrez un plugin avec <pluginName></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="119"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="123"/>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation>Déplacer <pluginName> vers le point de vente cible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="122"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="126"/>
|
||||
<source>move plugin to <index></source>
|
||||
<translation>déplacer le plugin vers <index></translation>
|
||||
</message>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/best-list-view.cpp" line="312"/>
|
||||
<location filename="../../frontend/view/best-list-view.cpp" line="388"/>
|
||||
<source>Best Matches</source>
|
||||
<translation>Үздік матчтар</translation>
|
||||
</message>
|
||||
|
@ -12,32 +12,45 @@
|
|||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="42"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-search</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="71"/>
|
||||
<source>Search</source>
|
||||
<translation>Іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="94"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="78"/>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="96"/>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="107"/>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you getting results quickly, whether to create or not?</source>
|
||||
<translation>Индексті жасау нәтижені тез алуға көмектеседі ме, жасамай ма?</translation>
|
||||
<translation type="vanished">Индексті жасау нәтижені тез алуға көмектеседі ме, жасамай ма?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<translation>Еске салмаңыз</translation>
|
||||
<translation type="vanished">Еске салмаңыз</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>No</source>
|
||||
<translation>Жоқ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="120"/>
|
||||
<source>Yes</source>
|
||||
<translation>Иә</translation>
|
||||
</message>
|
||||
|
@ -45,20 +58,24 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FolderListItem</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="538"/>
|
||||
<source>Delete the folder out of blacklist</source>
|
||||
<translation>Қалтаны қаратізімнен жою</translation>
|
||||
<translation type="vanished">Қалтаны қаратізімнен жою</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="69"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="73"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-search</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="76"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="81"/>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="84"/>
|
||||
<source>Global Search</source>
|
||||
<translation>Ғаламдық іздеу</translation>
|
||||
</message>
|
||||
|
@ -66,7 +83,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="56"/>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="53"/>
|
||||
<source>Search</source>
|
||||
<translation>Іздеу</translation>
|
||||
</message>
|
||||
|
@ -74,183 +91,176 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SettingsWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="35"/>
|
||||
<source>ukui-search-settings</source>
|
||||
<translation>ukui-іздеу параметрлері</translation>
|
||||
<translation type="vanished">ukui-іздеу параметрлері</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="81"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="299"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="503"/>
|
||||
<source>Search</source>
|
||||
<translation>Іздеу</translation>
|
||||
<translation type="vanished">Іздеу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="108"/>
|
||||
<source><h2>Settings</h2></source>
|
||||
<translation><h2> Параметрлер</h2></translation>
|
||||
<translation type="vanished"><h2> Параметрлер</h2></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="113"/>
|
||||
<source><h3>Index State</h3></source>
|
||||
<translation><h3> Индекс күйі</h3></translation>
|
||||
<translation type="vanished"><h3> Индекс күйі</h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="115"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="117"/>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="125"/>
|
||||
<source><h3>File Index Settings</h3></source>
|
||||
<translation><h3> Файл индексінің параметрлері</h3></translation>
|
||||
<translation type="vanished"><h3> Файл индексінің параметрлері</h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="127"/>
|
||||
<source>Following folders will not be searched. You can set it by adding and removing folders.</source>
|
||||
<translation>Келесі қалталар ізделмейді. Оны қалталарды қосу және жою арқылы орнатуға болады.</translation>
|
||||
<translation type="vanished">Келесі қалталар ізделмейді. Оны қалталарды қосу және жою арқылы орнатуға болады.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="136"/>
|
||||
<source>Add ignored folders</source>
|
||||
<translation>Еленбеген қалталарды қосу</translation>
|
||||
<translation type="vanished">Еленбеген қалталарды қосу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="157"/>
|
||||
<source><h3>Search Engine Settings</h3></source>
|
||||
<translation><h3> Іздеу жүйесінің параметрлері</h3></translation>
|
||||
<translation type="vanished"><h3> Іздеу жүйесінің параметрлері</h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="159"/>
|
||||
<source>Please select search engine you preferred.</source>
|
||||
<translation>Таңдаулы іздеу жүйесін таңдаңыз.</translation>
|
||||
<translation type="vanished">Таңдаулы іздеу жүйесін таңдаңыз.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="172"/>
|
||||
<source>baidu</source>
|
||||
<translation>Байду</translation>
|
||||
<translation type="vanished">Байду</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="174"/>
|
||||
<source>sougou</source>
|
||||
<translation>сугу</translation>
|
||||
<translation type="vanished">сугу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="176"/>
|
||||
<source>360</source>
|
||||
<translation>360</translation>
|
||||
<translation type="vanished">360</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="299"/>
|
||||
<source>Whether to delete this directory?</source>
|
||||
<translation>Бұл каталогты жою керек пе?</translation>
|
||||
<translation type="vanished">Бұл каталогты жою керек пе?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="300"/>
|
||||
<source>Yes</source>
|
||||
<translation>Иә</translation>
|
||||
<translation type="vanished">Иә</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="301"/>
|
||||
<source>No</source>
|
||||
<translation>Жоқ</translation>
|
||||
<translation type="vanished">Жоқ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="359"/>
|
||||
<source>Creating ...</source>
|
||||
<translation>Жасау...</translation>
|
||||
<translation type="vanished">Жасау...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="362"/>
|
||||
<source>Done</source>
|
||||
<translation>Орындалды</translation>
|
||||
<translation type="vanished">Орындалды</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="370"/>
|
||||
<source>Index Entry: %1</source>
|
||||
<translation>Индекс жазбасы:% 1</translation>
|
||||
<translation type="vanished">Индекс жазбасы:% 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="416"/>
|
||||
<source>Directories</source>
|
||||
<translation>Каталогтар</translation>
|
||||
<translation type="vanished">Каталогтар</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="417"/>
|
||||
<source>select blocked folder</source>
|
||||
<translation>блокталған қалтаны таңдау</translation>
|
||||
<translation type="vanished">блокталған қалтаны таңдау</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="418"/>
|
||||
<source>Select</source>
|
||||
<translation>Таңдау</translation>
|
||||
<translation type="vanished">Таңдау</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="419"/>
|
||||
<source>Position: </source>
|
||||
<translation>Лауазымы: </translation>
|
||||
<translation type="vanished">Лауазымы: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="420"/>
|
||||
<source>FileName: </source>
|
||||
<translation>Файл атауы: </translation>
|
||||
<translation type="vanished">Файл атауы: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="421"/>
|
||||
<source>FileType: </source>
|
||||
<translation>РаÐ1/2аÐ1/2а </translation>
|
||||
<translation type="vanished">РаÐ1/2аÐ1/2а </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="422"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Болдырмау</translation>
|
||||
<translation type="vanished">Болдырмау</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="487"/>
|
||||
<source>Choosen path is Empty!</source>
|
||||
<translation>Таңдау жолы Бос!</translation>
|
||||
<translation type="vanished">Таңдау жолы Бос!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="491"/>
|
||||
<source>Choosen path is not in "home"!</source>
|
||||
<translation>Таңдау жолы «үйде» жоқ!</translation>
|
||||
<translation type="vanished">Таңдау жолы «үйде» жоқ!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="495"/>
|
||||
<source>Its' parent folder has been blocked!</source>
|
||||
<translation>Оның бас қалтасы жабылды!</translation>
|
||||
<translation type="vanished">Оның бас қалтасы жабылды!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="499"/>
|
||||
<source>Set blocked folder failed!</source>
|
||||
<translation>Блокталған қалтаны орнату жаңылысы!</translation>
|
||||
<translation type="vanished">Блокталған қалтаны орнату жаңылысы!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="504"/>
|
||||
<source>OK</source>
|
||||
<translation>ЖАҚСЫ</translation>
|
||||
<translation type="vanished">ЖАҚСЫ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="88"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="111"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation>Ukui-іздеу қолданбасынан шығу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="91"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="114"/>
|
||||
<source>Show main window</source>
|
||||
<translation>Негізгі терезені көрсету</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="117"/>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="120"/>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="123"/>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="126"/>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="152"/>
|
||||
<source>Web Page</source>
|
||||
<translation>Веб-бет</translation>
|
||||
<translation type="vanished">Веб-бет</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
<location filename="../../frontend/search-app-widget-plugin/provider/data/search.qml" line="115"/>
|
||||
<source>search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/best-list-view.cpp" line="312"/>
|
||||
<location filename="../../frontend/view/best-list-view.cpp" line="388"/>
|
||||
<source>Best Matches</source>
|
||||
<translation>Мыкты матчтар</translation>
|
||||
</message>
|
||||
|
@ -12,32 +12,45 @@
|
|||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="42"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>укуи-издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="71"/>
|
||||
<source>Search</source>
|
||||
<translation>Издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="94"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="78"/>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="96"/>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="107"/>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you getting results quickly, whether to create or not?</source>
|
||||
<translation>Индексин түзүү тез арада натыйжаларды алууга жардам бере алат, түзүү же түзүү эмес?</translation>
|
||||
<translation type="vanished">Индексин түзүү тез арада натыйжаларды алууга жардам бере алат, түзүү же түзүү эмес?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<translation>Эскертпөйлү</translation>
|
||||
<translation type="vanished">Эскертпөйлү</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>No</source>
|
||||
<translation>Жок</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="120"/>
|
||||
<source>Yes</source>
|
||||
<translation>Ооба</translation>
|
||||
</message>
|
||||
|
@ -45,20 +58,24 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FolderListItem</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="538"/>
|
||||
<source>Delete the folder out of blacklist</source>
|
||||
<translation>Папканы кара тизмеден өчүрүү</translation>
|
||||
<translation type="vanished">Папканы кара тизмеден өчүрүү</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="69"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="73"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>укуи-издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="76"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="81"/>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="84"/>
|
||||
<source>Global Search</source>
|
||||
<translation>Глобалдык издөө</translation>
|
||||
</message>
|
||||
|
@ -66,7 +83,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="56"/>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="53"/>
|
||||
<source>Search</source>
|
||||
<translation>Издөө</translation>
|
||||
</message>
|
||||
|
@ -74,183 +91,176 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SettingsWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="35"/>
|
||||
<source>ukui-search-settings</source>
|
||||
<translation>ukui-search-параметрлери</translation>
|
||||
<translation type="vanished">ukui-search-параметрлери</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="81"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="299"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="503"/>
|
||||
<source>Search</source>
|
||||
<translation>Издөө</translation>
|
||||
<translation type="vanished">Издөө</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="108"/>
|
||||
<source><h2>Settings</h2></source>
|
||||
<translation><h2> Параметрлер </h2></translation>
|
||||
<translation type="vanished"><h2> Параметрлер </h2></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="113"/>
|
||||
<source><h3>Index State</h3></source>
|
||||
<translation><h3> Индекс мамлекеттик </h3></translation>
|
||||
<translation type="vanished"><h3> Индекс мамлекеттик </h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="115"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="117"/>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="125"/>
|
||||
<source><h3>File Index Settings</h3></source>
|
||||
<translation><h3> Файл индексинин параметрлери </h3></translation>
|
||||
<translation type="vanished"><h3> Файл индексинин параметрлери </h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="127"/>
|
||||
<source>Following folders will not be searched. You can set it by adding and removing folders.</source>
|
||||
<translation>Төмөнкү папкалар изделбейт. Папкаларды кошуу жана алып салуу менен орнотууга болот.</translation>
|
||||
<translation type="vanished">Төмөнкү папкалар изделбейт. Папкаларды кошуу жана алып салуу менен орнотууга болот.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="136"/>
|
||||
<source>Add ignored folders</source>
|
||||
<translation>Эске алынбаган папкаларды кошуу</translation>
|
||||
<translation type="vanished">Эске алынбаган папкаларды кошуу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="157"/>
|
||||
<source><h3>Search Engine Settings</h3></source>
|
||||
<translation><h3> Издөө системасынын параметрлери </h3></translation>
|
||||
<translation type="vanished"><h3> Издөө системасынын параметрлери </h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="159"/>
|
||||
<source>Please select search engine you preferred.</source>
|
||||
<translation>Сиз тандаган издөө системасын тандаңыз.</translation>
|
||||
<translation type="vanished">Сиз тандаган издөө системасын тандаңыз.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="172"/>
|
||||
<source>baidu</source>
|
||||
<translation>байду</translation>
|
||||
<translation type="vanished">байду</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="174"/>
|
||||
<source>sougou</source>
|
||||
<translation>сугоу</translation>
|
||||
<translation type="vanished">сугоу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="176"/>
|
||||
<source>360</source>
|
||||
<translation>360</translation>
|
||||
<translation type="vanished">360</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="299"/>
|
||||
<source>Whether to delete this directory?</source>
|
||||
<translation>Бул каталогду жоготууга болобу?</translation>
|
||||
<translation type="vanished">Бул каталогду жоготууга болобу?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="300"/>
|
||||
<source>Yes</source>
|
||||
<translation>Ооба</translation>
|
||||
<translation type="vanished">Ооба</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="301"/>
|
||||
<source>No</source>
|
||||
<translation>Жок</translation>
|
||||
<translation type="vanished">Жок</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="359"/>
|
||||
<source>Creating ...</source>
|
||||
<translation>Түзүү ...</translation>
|
||||
<translation type="vanished">Түзүү ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="362"/>
|
||||
<source>Done</source>
|
||||
<translation>Аткарылды</translation>
|
||||
<translation type="vanished">Аткарылды</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="370"/>
|
||||
<source>Index Entry: %1</source>
|
||||
<translation>Индекске кирүү: %1</translation>
|
||||
<translation type="vanished">Индекске кирүү: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="416"/>
|
||||
<source>Directories</source>
|
||||
<translation>Каталогдор</translation>
|
||||
<translation type="vanished">Каталогдор</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="417"/>
|
||||
<source>select blocked folder</source>
|
||||
<translation>блоктолгон папканы тандоо</translation>
|
||||
<translation type="vanished">блоктолгон папканы тандоо</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="418"/>
|
||||
<source>Select</source>
|
||||
<translation>Тандоо</translation>
|
||||
<translation type="vanished">Тандоо</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="419"/>
|
||||
<source>Position: </source>
|
||||
<translation>Позиция: </translation>
|
||||
<translation type="vanished">Позиция: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="420"/>
|
||||
<source>FileName: </source>
|
||||
<translation>Файл Аты: </translation>
|
||||
<translation type="vanished">Файл Аты: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="421"/>
|
||||
<source>FileType: </source>
|
||||
<translation>FileType: </translation>
|
||||
<translation type="vanished">FileType: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="422"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Жокко чыгаруу</translation>
|
||||
<translation type="vanished">Жокко чыгаруу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="487"/>
|
||||
<source>Choosen path is Empty!</source>
|
||||
<translation>Тандалган жол бош!</translation>
|
||||
<translation type="vanished">Тандалган жол бош!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="491"/>
|
||||
<source>Choosen path is not in "home"!</source>
|
||||
<translation>Тандалган жол "үйдө" эмес!</translation>
|
||||
<translation type="vanished">Тандалган жол "үйдө" эмес!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="495"/>
|
||||
<source>Its' parent folder has been blocked!</source>
|
||||
<translation>Анын ата-энесинин папкасы бөгөттөлдү!</translation>
|
||||
<translation type="vanished">Анын ата-энесинин папкасы бөгөттөлдү!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="499"/>
|
||||
<source>Set blocked folder failed!</source>
|
||||
<translation>Блоктолгон папканы орнотуу ишке ашпады!</translation>
|
||||
<translation type="vanished">Блоктолгон папканы орнотуу ишке ашпады!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="504"/>
|
||||
<source>OK</source>
|
||||
<translation>МАКУЛ</translation>
|
||||
<translation type="vanished">МАКУЛ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="88"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="111"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation>Укуи-издөө тиркемесин таштаңыз</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="91"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="114"/>
|
||||
<source>Show main window</source>
|
||||
<translation>Негизги терезени көрсөтүү</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="117"/>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="120"/>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="123"/>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="126"/>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="152"/>
|
||||
<source>Web Page</source>
|
||||
<translation>Веб-барак</translation>
|
||||
<translation type="vanished">Веб-барак</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
<location filename="../../frontend/search-app-widget-plugin/provider/data/search.qml" line="115"/>
|
||||
<source>search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
@ -297,32 +297,37 @@
|
|||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="42"/>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="71"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Ara</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="94"/>
|
||||
<source>Creating index can help you getting results quickly, whether to create or not?</source>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="78"/>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="96"/>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<source>No</source>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="107"/>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="120"/>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -352,12 +357,17 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="71"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="73"/>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="79"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="81"/>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="84"/>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished">Genel Arama</translation>
|
||||
</message>
|
||||
|
@ -418,7 +428,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="57"/>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="53"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Ara</translation>
|
||||
</message>
|
||||
|
@ -536,32 +546,32 @@
|
|||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="107"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="111"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="110"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="114"/>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="113"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="117"/>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="116"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="120"/>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="119"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="123"/>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="122"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="126"/>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::BestListWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/best-list-view.cpp" line="312"/>
|
||||
<location filename="../../frontend/view/best-list-view.cpp" line="388"/>
|
||||
<source>Best Matches</source>
|
||||
<translation>ئەڭ ياخشى سەرەڭگە</translation>
|
||||
</message>
|
||||
|
@ -12,32 +12,45 @@
|
|||
<context>
|
||||
<name>UkuiSearch::CreateIndexAskDialog</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="42"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="71"/>
|
||||
<source>Search</source>
|
||||
<translation>ئىزدە</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="94"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="78"/>
|
||||
<source>close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="96"/>
|
||||
<source>Creating index can help you get results more quickly. Would you like to create one?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="107"/>
|
||||
<source>Don't remind me again</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Creating index can help you getting results quickly, whether to create or not?</source>
|
||||
<translation>كۆرسەتكۈچ قۇرۇش سىزنىڭ تېز سۈرئەتتە نەتىجە ئېلىشىڭىزغا ياردەم قىلالايدۇ، ياراتامدۇ-يوق؟</translation>
|
||||
<translation type="vanished">كۆرسەتكۈچ قۇرۇش سىزنىڭ تېز سۈرئەتتە نەتىجە ئېلىشىڭىزغا ياردەم قىلالايدۇ، ياراتامدۇ-يوق؟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<translation>ئەسكەرتىپ قويماڭ</translation>
|
||||
<translation type="vanished">ئەسكەرتىپ قويماڭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>No</source>
|
||||
<translation>ياق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="120"/>
|
||||
<source>Yes</source>
|
||||
<translation>شۇنداق</translation>
|
||||
</message>
|
||||
|
@ -45,20 +58,24 @@
|
|||
<context>
|
||||
<name>UkuiSearch::FolderListItem</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="538"/>
|
||||
<source>Delete the folder out of blacklist</source>
|
||||
<translation>قارا تىزىملىكتىن ھۆججەت قىسقۇچنى ئۆچۈرۈش</translation>
|
||||
<translation type="vanished">قارا تىزىملىكتىن ھۆججەت قىسقۇچنى ئۆچۈرۈش</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="69"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="73"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>ukui-ئىزدەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="76"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="81"/>
|
||||
<source>Search Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="84"/>
|
||||
<source>Global Search</source>
|
||||
<translation>يەرشارى ئىزدەش</translation>
|
||||
</message>
|
||||
|
@ -66,7 +83,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchLineEdit</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="56"/>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="53"/>
|
||||
<source>Search</source>
|
||||
<translation>ئىزدە</translation>
|
||||
</message>
|
||||
|
@ -74,183 +91,176 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SettingsWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="35"/>
|
||||
<source>ukui-search-settings</source>
|
||||
<translation>ukui-ئىزدەش-تەڭشەكلەر</translation>
|
||||
<translation type="vanished">ukui-ئىزدەش-تەڭشەكلەر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="81"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="299"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="503"/>
|
||||
<source>Search</source>
|
||||
<translation>ئىزدە</translation>
|
||||
<translation type="vanished">ئىزدە</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="108"/>
|
||||
<source><h2>Settings</h2></source>
|
||||
<translation><h2> تەڭشەكلەر</h2></translation>
|
||||
<translation type="vanished"><h2> تەڭشەكلەر</h2></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="113"/>
|
||||
<source><h3>Index State</h3></source>
|
||||
<translation><h3> كۆرسەتكۈچ ھالىتى</h3></translation>
|
||||
<translation type="vanished"><h3> كۆرسەتكۈچ ھالىتى</h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="115"/>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="117"/>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="125"/>
|
||||
<source><h3>File Index Settings</h3></source>
|
||||
<translation><h3> ھۆججەت كۆرسەتكۈچى تەڭشەكلىرى</h3></translation>
|
||||
<translation type="vanished"><h3> ھۆججەت كۆرسەتكۈچى تەڭشەكلىرى</h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="127"/>
|
||||
<source>Following folders will not be searched. You can set it by adding and removing folders.</source>
|
||||
<translation>تۆۋەندىكى ھۆججەت قىسقۇچلار ئاختۇرۇلمايدۇ. ھۆججەت قىسقۇچلارنى قوشۇش ۋە چىقىرىۋېتىش ئارقىلىق تەڭشەپ قويسىڭىز بولىدۇ.</translation>
|
||||
<translation type="vanished">تۆۋەندىكى ھۆججەت قىسقۇچلار ئاختۇرۇلمايدۇ. ھۆججەت قىسقۇچلارنى قوشۇش ۋە چىقىرىۋېتىش ئارقىلىق تەڭشەپ قويسىڭىز بولىدۇ.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="136"/>
|
||||
<source>Add ignored folders</source>
|
||||
<translation>سەل قارالغان ھۆججەت قىسقۇچلارنى قوشۇش</translation>
|
||||
<translation type="vanished">سەل قارالغان ھۆججەت قىسقۇچلارنى قوشۇش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="157"/>
|
||||
<source><h3>Search Engine Settings</h3></source>
|
||||
<translation><h3> ئىزدەش ماتورىنىڭ تەڭشەكلىرى</h3></translation>
|
||||
<translation type="vanished"><h3> ئىزدەش ماتورىنىڭ تەڭشەكلىرى</h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="159"/>
|
||||
<source>Please select search engine you preferred.</source>
|
||||
<translation>سىز تاللىغان ئىزدەش ماتورىنى تاللاڭ.</translation>
|
||||
<translation type="vanished">سىز تاللىغان ئىزدەش ماتورىنى تاللاڭ.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="172"/>
|
||||
<source>baidu</source>
|
||||
<translation>بەيدۇ</translation>
|
||||
<translation type="vanished">بەيدۇ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="174"/>
|
||||
<source>sougou</source>
|
||||
<translation>sougou</translation>
|
||||
<translation type="vanished">sougou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="176"/>
|
||||
<source>360</source>
|
||||
<translation>360</translation>
|
||||
<translation type="vanished">360</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="299"/>
|
||||
<source>Whether to delete this directory?</source>
|
||||
<translation>بۇ مۇندەرىجىنى ئۆچۈرەمدۇ يوق؟</translation>
|
||||
<translation type="vanished">بۇ مۇندەرىجىنى ئۆچۈرەمدۇ يوق؟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="300"/>
|
||||
<source>Yes</source>
|
||||
<translation>شۇنداق</translation>
|
||||
<translation type="vanished">شۇنداق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="301"/>
|
||||
<source>No</source>
|
||||
<translation>ياق</translation>
|
||||
<translation type="vanished">ياق</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="359"/>
|
||||
<source>Creating ...</source>
|
||||
<translation>يارىتىلىش ...</translation>
|
||||
<translation type="vanished">يارىتىلىش ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="362"/>
|
||||
<source>Done</source>
|
||||
<translation>تۈگىدى</translation>
|
||||
<translation type="vanished">تۈگىدى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="370"/>
|
||||
<source>Index Entry: %1</source>
|
||||
<translation>كۆرسەتكۈچ كىرىش: ٪1</translation>
|
||||
<translation type="vanished">كۆرسەتكۈچ كىرىش: ٪1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="416"/>
|
||||
<source>Directories</source>
|
||||
<translation>مۇندەرىجىلەر</translation>
|
||||
<translation type="vanished">مۇندەرىجىلەر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="417"/>
|
||||
<source>select blocked folder</source>
|
||||
<translation>چەكلەنگەن ھۆججەت قىسقۇچنى تاللاش</translation>
|
||||
<translation type="vanished">چەكلەنگەن ھۆججەت قىسقۇچنى تاللاش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="418"/>
|
||||
<source>Select</source>
|
||||
<translation>تاللاش</translation>
|
||||
<translation type="vanished">تاللاش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="419"/>
|
||||
<source>Position: </source>
|
||||
<translation>ئورنى: </translation>
|
||||
<translation type="vanished">ئورنى: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="420"/>
|
||||
<source>FileName: </source>
|
||||
<translation>ھۆججەت نامى: </translation>
|
||||
<translation type="vanished">ھۆججەت نامى: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="421"/>
|
||||
<source>FileType: </source>
|
||||
<translation>FileType: </translation>
|
||||
<translation type="vanished">FileType: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="422"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ئەمەلدىن قالدۇرۇش</translation>
|
||||
<translation type="vanished">ئەمەلدىن قالدۇرۇش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="487"/>
|
||||
<source>Choosen path is Empty!</source>
|
||||
<translation>تاللايدىغان يول بوش!</translation>
|
||||
<translation type="vanished">تاللايدىغان يول بوش!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="491"/>
|
||||
<source>Choosen path is not in "home"!</source>
|
||||
<translation>تاللايدىغان يول «ماكان»دا يوق!</translation>
|
||||
<translation type="vanished">تاللايدىغان يول «ماكان»دا يوق!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="495"/>
|
||||
<source>Its' parent folder has been blocked!</source>
|
||||
<translation>ئۇنىڭ ئانا ھۆججەت قىسقۇچلىرى توسۇۋېتىلدى!</translation>
|
||||
<translation type="vanished">ئۇنىڭ ئانا ھۆججەت قىسقۇچلىرى توسۇۋېتىلدى!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="499"/>
|
||||
<source>Set blocked folder failed!</source>
|
||||
<translation>چەكلەنگەن ھۆججەت قىسقۇچنى بەلگىلەش مەغلۇپ بولدى!</translation>
|
||||
<translation type="vanished">چەكلەنگەن ھۆججەت قىسقۇچنى بەلگىلەش مەغلۇپ بولدى!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="504"/>
|
||||
<source>OK</source>
|
||||
<translation>ماقۇل</translation>
|
||||
<translation type="vanished">ماقۇل</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::UkuiSearchGui</name>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="88"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="111"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation>ئۇكۇي ئىزدەش پروگراممىسىدىن چېكىنىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="91"/>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="114"/>
|
||||
<source>Show main window</source>
|
||||
<translation>ئاساسىي كۆزنەكنى كۆرسىتىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="117"/>
|
||||
<source>unregister a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="120"/>
|
||||
<source>register a plugin with <pluginName></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="123"/>
|
||||
<source>move <pluginName> to the target pos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="126"/>
|
||||
<source>move plugin to <index></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="152"/>
|
||||
<source>Web Page</source>
|
||||
<translation>تور بەت</translation>
|
||||
<translation type="vanished">تور بەت</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>search</name>
|
||||
<message>
|
||||
<location filename="../../frontend/search-app-widget-plugin/provider/data/search.qml" line="115"/>
|
||||
<source>search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
Loading…
Reference in New Issue