新增藏文翻译;修复藏文结果列表高度计算问题;修改输入框右键翻译方案;
This commit is contained in:
parent
a62c77621b
commit
ee5d5ae413
|
@ -59,7 +59,7 @@ RESOURCES += \
|
|||
TRANSLATIONS += \
|
||||
../translations/ukui-search/zh_CN.ts \
|
||||
../translations/ukui-search/tr.ts \
|
||||
../translations/ukui-search/bo.ts
|
||||
../translations/ukui-search/bo_CN.ts
|
||||
|
||||
qm_files.path = /usr/share/ukui-search/translations/
|
||||
qm_files.files = $$OUT_PWD/.qm/*.qm
|
||||
|
|
Binary file not shown.
|
@ -3,7 +3,6 @@
|
|||
<file>res/icons/edit-find-symbolic.svg</file>
|
||||
<file>res/icons/desktop.png</file>
|
||||
<file>res/icons/close.svg</file>
|
||||
<file>res/qt-translations/qt_zh_CN.qm</file>
|
||||
<file>res/icons/net-disconnected.svg</file>
|
||||
<file>res/icons/system-search.symbolic.png</file>
|
||||
<file>res/icons/ukui-up-symbolic.svg</file>
|
||||
|
|
|
@ -35,7 +35,7 @@ UkuiSearchGui::UkuiSearchGui(int &argc, char *argv[], const QString &application
|
|||
|
||||
QTranslator *qt_translator = new QTranslator(this);
|
||||
try {
|
||||
if(! qt_translator->load(":/res/qt-translations/qt_zh_CN.qm")) throw - 1;
|
||||
if(! qt_translator->load("/usr/share/qt5/translations/qt_" + QLocale::system().name())) throw - 1;
|
||||
this->installTranslator(qt_translator);
|
||||
} catch(...) {
|
||||
qDebug() << "Load translations file" << QLocale() << "failed!";
|
||||
|
|
|
@ -31,13 +31,24 @@ bool BestListView::isSelected()
|
|||
|
||||
int BestListView::showHeight()
|
||||
{
|
||||
int height;
|
||||
int rowheight = this->rowHeight(this->model()->index(0, 0, QModelIndex()));
|
||||
int height(0);
|
||||
// int rowheight = this->rowHeight(this->model()->index(0, 0, QModelIndex()));
|
||||
// if (this->isExpanded()) {
|
||||
// height = m_count * rowheight;
|
||||
// } else {
|
||||
// int show_count = m_count > NUM_LIMIT_SHOWN_DEFAULT ? NUM_LIMIT_SHOWN_DEFAULT : m_count;
|
||||
// height = show_count * rowheight;
|
||||
// }
|
||||
|
||||
if (this->isExpanded()) {
|
||||
height = m_count * rowheight;
|
||||
for (int i = 0; i<m_count; ++i) {
|
||||
height += this->rowHeight(this->model()->index(i, 0, QModelIndex()));
|
||||
}
|
||||
} else {
|
||||
int show_count = m_count > NUM_LIMIT_SHOWN_DEFAULT ? NUM_LIMIT_SHOWN_DEFAULT : m_count;
|
||||
height = show_count * rowheight;
|
||||
for (int i = 0; i<show_count; ++i) {
|
||||
height += this->rowHeight(this->model()->index(i, 0, QModelIndex()));
|
||||
}
|
||||
}
|
||||
return height;
|
||||
}
|
||||
|
|
|
@ -190,13 +190,23 @@ bool ResultView::isSelected()
|
|||
|
||||
int ResultView::showHeight()
|
||||
{
|
||||
int height;
|
||||
int rowheight = this->rowHeight(this->model()->index(0, 0, QModelIndex()));
|
||||
int height(0);
|
||||
// int rowheight = this->rowHeight(this->model()->index(0, 0, QModelIndex()));
|
||||
// if (this->isExpanded()) {
|
||||
// height = m_count * rowheight;
|
||||
// } else {
|
||||
// int show_count = m_count > NUM_LIMIT_SHOWN_DEFAULT ? NUM_LIMIT_SHOWN_DEFAULT : m_count;
|
||||
// height = show_count * rowheight;
|
||||
// }
|
||||
if (this->isExpanded()) {
|
||||
height = m_count * rowheight;
|
||||
for (int i = 0; i<m_count; ++i) {
|
||||
height += this->rowHeight(this->model()->index(i, 0, QModelIndex()));
|
||||
}
|
||||
} else {
|
||||
int show_count = m_count > NUM_LIMIT_SHOWN_DEFAULT ? NUM_LIMIT_SHOWN_DEFAULT : m_count;
|
||||
height = show_count * rowheight;
|
||||
for (int i = 0; i<show_count; ++i) {
|
||||
height += this->rowHeight(this->model()->index(i, 0, QModelIndex()));
|
||||
}
|
||||
}
|
||||
return height;
|
||||
}
|
||||
|
|
|
@ -64,7 +64,8 @@ RESOURCES += \
|
|||
resource1.qrc \
|
||||
|
||||
TRANSLATIONS += \
|
||||
../translations/libukui-search/libukui-search_zh_CN.ts
|
||||
../translations/libukui-search/libukui-search_zh_CN.ts \
|
||||
../translations/libukui-search/libukui-search_bo_CN.ts
|
||||
|
||||
qm_files.path = /usr/share/ukui-search/translations/
|
||||
qm_files.files = $$OUT_PWD/.qm/*.qm
|
||||
|
|
|
@ -0,0 +1,392 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="bo_CN">
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="112"/>
|
||||
<source>Content index incomplete.</source>
|
||||
<translation>ནང་དོན་གྱི་སྟོན་གྲངས་ཆ་མི་ཚང་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-search-task.cpp" line="96"/>
|
||||
<source>Warning, Can not find home path.</source>
|
||||
<translation>ཁྱིམ་གྱི་དཀར་ཆག་རྙེད་ཐབས་མེད།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::AppMatch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-match.cpp" line="262"/>
|
||||
<source>Application Description:</source>
|
||||
<translation>ཉེར་སྤྱོད་གོ་རིམ་གྱི་གསལ་བཤད།</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="174"/>
|
||||
<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="175"/>
|
||||
<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="176"/>
|
||||
<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="177"/>
|
||||
<source>Install</source>
|
||||
<translation>སྒྲིག་སྦྱོར་བྱེད་པ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="35"/>
|
||||
<source>Applications Search</source>
|
||||
<translation>ཉེར་སྤྱོད་གོ་རིམ་འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="115"/>
|
||||
<source>Application</source>
|
||||
<translation>ཉེར་སྤྱོད་བྱ་རིམ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<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"/>
|
||||
<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"/>
|
||||
<source>Open path</source>
|
||||
<translation>ཡིག་ཆའི་ཐབས་ལམ་འབྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="226"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="240"/>
|
||||
<source>Dir search.</source>
|
||||
<translation>ཡིག་ཆའི་དཀར་ཆག་ལ་ཞིབ་བཤེར་དང་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="245"/>
|
||||
<source>Dir Search</source>
|
||||
<translation>ཡིག་ཆའི་དཀར་ཆག་ལ་ཞིབ་བཤེར་དང་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="305"/>
|
||||
<source>Directory</source>
|
||||
<translation>དཀར་ཆག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="342"/>
|
||||
<source>Path</source>
|
||||
<translation>ལམ་ཐིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="354"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ཐེངས་སྔ་མའི་བཟོ་བཅོས་དུས་ཚོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="366"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<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"/>
|
||||
<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"/>
|
||||
<source>Open path</source>
|
||||
<translation>ཡིག་ཆའི་ཐབས་ལམ་འབྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="409"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="423"/>
|
||||
<source>File content search.</source>
|
||||
<translation>ཡིག་ཆའི་ནང་དོན་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="428"/>
|
||||
<source>File content search</source>
|
||||
<translation>ཡིག་ཆའི་ནང་དོན་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="486"/>
|
||||
<source>OCR</source>
|
||||
<translation>OCR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="491"/>
|
||||
<source>File</source>
|
||||
<translation>ཡིག་ཆ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="602"/>
|
||||
<source>Path</source>
|
||||
<translation>ལམ་ཐིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="614"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ཐེངས་སྔ་མའི་བཟོ་བཅོས་དུས་ཚོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="626"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<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"/>
|
||||
<source>File Content</source>
|
||||
<translation>ཡིག་ཆའི་ནང་དོན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/file-content-search-task.cpp" line="45"/>
|
||||
<source>File Content Search</source>
|
||||
<translation>ཡིག་ཆའི་ནང་དོན་འཚོལ་ཞིབ་</translation>
|
||||
</message>
|
||||
</context>
|
||||
<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"/>
|
||||
<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"/>
|
||||
<source>Open path</source>
|
||||
<translation>ཡིག་ཆའི་ཐབས་ལམ་འབྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="16"/>
|
||||
<source>Copy Path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="30"/>
|
||||
<source>File search.</source>
|
||||
<translation>ཡིག་ཆ་འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="35"/>
|
||||
<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>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="79"/>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="191"/>
|
||||
<source>Can not get a default application for opening %1.</source>
|
||||
<translation>བཀོལ་སྤྱོད་ཀྱི་གོ་རིམ་མེད་ན་ཁ་ཕྱེ་ཆོག།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="105"/>
|
||||
<source>File</source>
|
||||
<translation>ཡིག་ཆ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="142"/>
|
||||
<source>Path</source>
|
||||
<translation>ལམ་ཐིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="154"/>
|
||||
<source>Last time modified</source>
|
||||
<translation>ཐེངས་སྔ་མའི་བཟོ་བཅོས་དུས་ཚོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/file-search-plugin.cpp" line="166"/>
|
||||
<source>Copy path</source>
|
||||
<translation>ཡིག་ཆའི་ལམ་ཐིག་དཔར་བ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MailSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="337"/>
|
||||
<source>From</source>
|
||||
<translation>དེ་ནས་ཡོང་བ་ཡིན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="338"/>
|
||||
<source>Time</source>
|
||||
<translation>དུས་ཚོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="339"/>
|
||||
<source>To</source>
|
||||
<translation>དམིགས་ཡུལ་ས་གནས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="340"/>
|
||||
<source>Cc</source>
|
||||
<translation>Cc</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MailSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="28"/>
|
||||
<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"/>
|
||||
<source>Mail Search</source>
|
||||
<translation>སྦྲག་རྫས་འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="94"/>
|
||||
<source>Mail</source>
|
||||
<translation>སྦྲག་རྫས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/mailsearch/mail-search-plugin.cpp" line="231"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::NoteSearch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="216"/>
|
||||
<source>Note Description:</source>
|
||||
<translation>སྟབས་བདེ་བྱང་བུ།ནང་དོན།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<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="154"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="26"/>
|
||||
<source>Note Search.</source>
|
||||
<translation>སྟབས་བདེ་བྱང་བུ།འཚོལ་ཞིབ་བྱེད་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="31"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="132"/>
|
||||
<source>Note Search</source>
|
||||
<translation>སྟབས་བདེ་བྱང་བུ།འཚོལ་ཞིབ་བྱེད་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="106"/>
|
||||
<source>Application</source>
|
||||
<translation>ཉེར་སྤྱོད་བྱ་རིམ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchManager</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/search-manager.cpp" line="68"/>
|
||||
<source>Path:</source>
|
||||
<translation>ལམ་ཐིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/index/search-manager.cpp" line="69"/>
|
||||
<source>Modified time:</source>
|
||||
<translation>བཟོ་བཅོས་བརྒྱབ་པའི་དུས་ཚོད་ནི།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="64"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="78"/>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation>ནུས་པ་སྒོ་བརྒྱབ་ཡོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="70"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="83"/>
|
||||
<source>plugin type: %1, is not registered!</source>
|
||||
<translation>ནུས་པ་ཐོ་འགོད་བྱས་མེད་པ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::SettingsSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="17"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="155"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="32"/>
|
||||
<source>Settings search.</source>
|
||||
<translation>སྒྲིག་བཀོད་འཚོལ་བཤེར་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="37"/>
|
||||
<source>Settings Search</source>
|
||||
<translation>སྒྲིག་བཀོད་འཚོལ་བཤེར་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="144"/>
|
||||
<source>Settings</source>
|
||||
<translation>སྒྲིག་བཀོད།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchPlugin</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="11"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="139"/>
|
||||
<source>Start browser search</source>
|
||||
<translation>དྲ་ངོས་ནས་འཚོལ་ཞིབ་བྱེད་འགོ་འཛུགས་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="23"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="28"/>
|
||||
<source>Web Page</source>
|
||||
<translation>དྲ་ངོས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -17,52 +17,52 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppMatch</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/appsearch/app-match.cpp" line="262"/>
|
||||
<source>Application Description:</source>
|
||||
<translation type="vanished">应用描述:</translation>
|
||||
<translation>应用描述:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<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="174"/>
|
||||
<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="175"/>
|
||||
<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="176"/>
|
||||
<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="177"/>
|
||||
<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="30"/>
|
||||
<location filename="../../libsearch/appsearch/app-search-plugin.cpp" line="35"/>
|
||||
<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="115"/>
|
||||
<source>Application</source>
|
||||
<translation>应用</translation>
|
||||
</message>
|
||||
|
@ -74,14 +74,12 @@
|
|||
<context>
|
||||
<name>UkuiSearch::AppSearchTask</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="21"/>
|
||||
<source>Application</source>
|
||||
<translation>应用</translation>
|
||||
<translation type="vanished">应用</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/searchinterface/searchtasks/app-search-task.cpp" line="26"/>
|
||||
<source>Application search.</source>
|
||||
<translation>应用搜索</translation>
|
||||
<translation type="vanished">应用搜索</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -324,7 +322,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="216"/>
|
||||
<source>Note Description:</source>
|
||||
<translatorcomment>便签内容:</translatorcomment>
|
||||
<translation>便签内容:</translation>
|
||||
|
@ -334,14 +332,14 @@
|
|||
<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="154"/>
|
||||
<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="132"/>
|
||||
<source>Note Search</source>
|
||||
<translatorcomment>便签</translatorcomment>
|
||||
<translation>便签</translation>
|
||||
|
@ -353,7 +351,7 @@
|
|||
<translation>便签.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="80"/>
|
||||
<location filename="../../libsearch/notesearch/note-search-plugin.cpp" line="106"/>
|
||||
<source>Application</source>
|
||||
<translatorcomment>应用</translatorcomment>
|
||||
<translation>应用</translation>
|
||||
|
@ -375,14 +373,14 @@
|
|||
<context>
|
||||
<name>UkuiSearch::SearchTaskPluginManager</name>
|
||||
<message>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="68"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="82"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="64"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="78"/>
|
||||
<source>plugin type: %1, is disabled!</source>
|
||||
<translation type="unfinished"></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"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="70"/>
|
||||
<location filename="../../libsearch/pluginmanage/search-task-plugin-manager.cpp" line="83"/>
|
||||
<source>plugin type: %1, is not registered!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -390,46 +388,38 @@
|
|||
<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="17"/>
|
||||
<location filename="../../libsearch/settingsearch/settings-search-plugin.cpp" line="155"/>
|
||||
<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="37"/>
|
||||
<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="32"/>
|
||||
<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="144"/>
|
||||
<source>Settings</source>
|
||||
<translation>设置项</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 type="unfinished"></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="11"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="139"/>
|
||||
<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="23"/>
|
||||
<location filename="../../libsearch/websearch/web-search-plugin.cpp" line="28"/>
|
||||
<source>Web Page</source>
|
||||
<translation>网页</translation>
|
||||
</message>
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1">
|
||||
<TS version="2.1" language="zh_CN">
|
||||
<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="323"/>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>སྙོམས་སྒྲིག་ལེགས་ཤོས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -14,32 +14,32 @@
|
|||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="41"/>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="70"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>འཚོལ་ཞིབ།</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>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>དཀར་ཆག་གསར་བཟོ་བྱས་ཚེ་འཚོལ་བྱ་མྱུར་དུ་རྙེད་ཐུབ། གསར་བཟོ་བྱའམ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="105"/>
|
||||
<source>Don't remind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ད་ནས་གསལ་བརྡ་མི་གཏོང་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="116"/>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>མིན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/create-index-ask-dialog.cpp" line="118"/>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>རེད།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -47,20 +47,20 @@
|
|||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="538"/>
|
||||
<source>Delete the folder out of blacklist</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>མིང་ཐོ་ནག་པོའི་ནང་ནས་ཡིག་སྣོད་བསུབ་པ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="69"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="71"/>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="76"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="78"/>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>འཚོལ་བཤེར།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -68,7 +68,7 @@
|
|||
<message>
|
||||
<location filename="../../frontend/control/search-line-edit.cpp" line="56"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>འཚོལ་ཞིབ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -76,160 +76,160 @@
|
|||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="35"/>
|
||||
<source>ukui-search-settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>འཚོལ་བཤེར།</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 type="unfinished"></translation>
|
||||
<translation>འཚོལ་ཞིབ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="108"/>
|
||||
<source><h2>Settings</h2></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><h2> སྒྲིག་འགོད། </h2></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="113"/>
|
||||
<source><h3>Index State</h3></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><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 type="unfinished"></translation>
|
||||
<translation>...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="125"/>
|
||||
<source><h3>File Index Settings</h3></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><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 type="unfinished"></translation>
|
||||
<translation>གཤམ་གྱི་ཡིག་སྣོད་འཚོལ་བཤེར་མི་བྱེད། ཡིག་སྣོད་གསར་སྣོན་དང་གསུབ་འཕྲི་བྱས་ཚེ་ཡིག་ཆའི་དཀར་ཆག་སྒྲིག་འགོད་བྱ་ཐུབ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="136"/>
|
||||
<source>Add ignored folders</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>སྣང་མེད་དུ་བཞག་པའི་ཡིག་སྣོད་ཁ་སྣོན་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="157"/>
|
||||
<source><h3>Search Engine Settings</h3></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><h3>འཚོལ་བཤེར་ཆས་སྒྲིག་འགོད།</h3></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="159"/>
|
||||
<source>Please select search engine you preferred.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ཁྱེད་རང་གིས་དགའ་པོ་བྱེད་པའི་འཚོལ་བཤེར་མ་ལག་འདེམས་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="172"/>
|
||||
<source>baidu</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>པའེ་ཏུའུ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="174"/>
|
||||
<source>sougou</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>སོའོ་གོའུ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="176"/>
|
||||
<source>360</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>360</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="299"/>
|
||||
<source>Whether to delete this directory?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>དཀར་ཆག་འདི་གསུབ་བམ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="300"/>
|
||||
<source>Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>རེད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="301"/>
|
||||
<source>No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>མིན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="359"/>
|
||||
<source>Creating ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>དཀར་ཆག་འདྲེན་བཞིན་ཡོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="362"/>
|
||||
<source>Done</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>བསྒྲུབས་ཚར།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="370"/>
|
||||
<source>Index Entry: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>གསལ་བྱང་ཚན་པ།:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="416"/>
|
||||
<source>Directories</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>དཀར་ཆག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="417"/>
|
||||
<source>select blocked folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>བཀག་སྡོམ་བྱས་པའི་ཡིག་སྣོད་གདམ་གསེས</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="418"/>
|
||||
<source>Select</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>བདམས་ཐོན་བྱུང་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="419"/>
|
||||
<source>Position: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>གོ་གནས་ནི། </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="420"/>
|
||||
<source>FileName: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ཡིག་ཆའི་མིང་ནི། </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="421"/>
|
||||
<source>FileType: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ཡིག་ཆའི་རིགས་དབྱིབས་ནི། </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="422"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ཕྱིར་འཐེན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="487"/>
|
||||
<source>Choosen path is Empty!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>བདམས་ཟིན་པའི་ལམ་ཐིག་མི་འདུག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="491"/>
|
||||
<source>Choosen path is not in "home"!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ཁྱིམ་གྱི་དཀར་ཆག་ནང་གི་ཡིག་སྣོད་འདེམ་རོགས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="495"/>
|
||||
<source>Its' parent folder has been blocked!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>རིམ་པ་གོང་མའི་ཡིག་སྣོད་གབ་ཟིན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="499"/>
|
||||
<source>Set blocked folder failed!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>བཀག་སྡོམ་བྱས་པའི་ཡིག་སྣོད་ལ་ཕམ་ཉེས་བྱུང་བ་རེད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/control/settings-widget.cpp" line="504"/>
|
||||
<source>OK</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>འགྲིགས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -237,20 +237,20 @@
|
|||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="88"/>
|
||||
<source>Quit ukui-search application</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>ཉེར་སྤྱོད་གོ་རིམ་ལས་ཕྱིར་འཐེན་བྱ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/ukui-search-gui.cpp" line="91"/>
|
||||
<source>Show main window</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>སྒེའུ་ཁུང་གཙོ་བོ་མངོན་པ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>UkuiSearch::WebSearchWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="152"/>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="177"/>
|
||||
<source>Web Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>དྲ་ངོས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -246,7 +246,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="323"/>
|
||||
<source>Best Matches</source>
|
||||
<translation type="unfinished">En İyi Eşleşen</translation>
|
||||
</message>
|
||||
|
@ -353,12 +353,12 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="69"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="71"/>
|
||||
<source>ukui-search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="76"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="78"/>
|
||||
<source>Global Search</source>
|
||||
<translation type="unfinished">Genel Arama</translation>
|
||||
</message>
|
||||
|
@ -628,7 +628,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::WebSearchWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="152"/>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="177"/>
|
||||
<source>Web Page</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="323"/>
|
||||
<source>Best Matches</source>
|
||||
<translation>最佳匹配</translation>
|
||||
</message>
|
||||
|
@ -115,12 +115,12 @@
|
|||
<context>
|
||||
<name>UkuiSearch::MainWindow</name>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="69"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="71"/>
|
||||
<source>ukui-search</source>
|
||||
<translation>搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="76"/>
|
||||
<location filename="../../frontend/mainwindow.cpp" line="78"/>
|
||||
<source>Global Search</source>
|
||||
<translation>搜索</translation>
|
||||
</message>
|
||||
|
@ -402,7 +402,7 @@
|
|||
<context>
|
||||
<name>UkuiSearch::WebSearchWidget</name>
|
||||
<message>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="152"/>
|
||||
<location filename="../../frontend/view/web-search-view.cpp" line="177"/>
|
||||
<source>Web Page</source>
|
||||
<translation>网页搜索</translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in New Issue