diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 384cad1..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -build -nbproject diff --git a/AUTHORS b/AUTHORS index 5b94db3..a66be6d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,7 +4,7 @@ Upstream Authors: Copyright: Copyright (c) 2010-2012 Razor team - Copyright (c) 2012-2014 LXQt team + Copyright (c) 2012-2016 LXQt team License: LGPL-2.1+ The full text of the licenses can be found in the 'COPYING' file. diff --git a/CMakeLists.txt b/CMakeLists.txt index 0f3adc5..6f57fab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -89,6 +89,14 @@ lxqt_translate_ts(lxqt-runner_QM_FILES ${lxqt-runner_UI_FILES} INSTALL_DIR "${LXQT_TRANSLATIONS_DIR}/${PROJECT_NAME}" + PULL_TRANSLATIONS + ${PULL_TRANSLATIONS} + CLEAN_TRANSLATIONS + ${CLEAN_TRANSLATIONS} + TRANSLATIONS_REPO + ${TRANSLATIONS_REPO} + TRANSLATIONS_REFSPEC + ${TRANSLATIONS_REFSPEC} ) lxqt_app_translation_loader(lxqt-runner_QM_LOADER ${PROJECT_NAME}) diff --git a/commanditemmodel.cpp b/commanditemmodel.cpp index b439aa3..2be7411 100644 --- a/commanditemmodel.cpp +++ b/commanditemmodel.cpp @@ -40,12 +40,13 @@ CommandItemModel::CommandItemModel(QObject *parent) : QSortFilterProxyModel(parent), mSourceModel(new CommandSourceItemModel(this)), - mOnlyHistory(false) + mOnlyHistory(false), + mShowHistoryFirst(true) { - setDynamicSortFilter(false); // required in Qt5 setFilterCaseSensitivity(Qt::CaseInsensitive); setSortCaseSensitivity(Qt::CaseInsensitive); setSourceModel(mSourceModel); + sort(0); } @@ -142,8 +143,25 @@ bool CommandItemModel::lessThan(const QModelIndex &left, const QModelIndex &righ if (mOnlyHistory) return left.row() < right.row(); - else - return QSortFilterProxyModel::lessThan(left, right); + + HistoryItem const * i_left = dynamic_cast(mSourceModel->command(left)); + HistoryItem const * i_right = dynamic_cast(mSourceModel->command(right)); + if (nullptr != i_left && nullptr == i_right) + return mShowHistoryFirst; + if (nullptr == i_left && nullptr != i_right) + return !mShowHistoryFirst; + if (nullptr != i_left && nullptr != i_right) + { + QRegExp re(filterRegExp()); + //Note: -1 should not be returned if the item passed the filter previously + const int pos_left = re.indexIn(i_left->command()); + const int pos_right = re.indexIn(i_right->command()); + Q_ASSERT(-1 != pos_left && -1 != pos_right); + return pos_left < pos_right + || (pos_left == pos_right && QSortFilterProxyModel::lessThan(left, right)); + } + + return QSortFilterProxyModel::lessThan(left, right); } @@ -200,6 +218,15 @@ QModelIndex CommandItemModel::appropriateItem(const QString &pattern) const } +/************************************************ + + ************************************************/ +void CommandItemModel::showHistoryFirst(bool first/* = true*/) +{ + mShowHistoryFirst = first; + invalidate(); +} + /************************************************ ************************************************/ diff --git a/commanditemmodel.h b/commanditemmodel.h index 4318c94..dc5bb70 100644 --- a/commanditemmodel.h +++ b/commanditemmodel.h @@ -86,6 +86,8 @@ public: bool isShowOnlyHistory() const { return mOnlyHistory; } void showOnlyHistory(bool onlyHistory) { mOnlyHistory = onlyHistory; } + void showHistoryFirst(bool first = true); + QString command() const { return mSourceModel->command(); } void setCommand(const QString &command) { mSourceModel->setCommand(command); } @@ -101,6 +103,7 @@ private: int itemType(const QModelIndex &index) const; CommandSourceItemModel *mSourceModel; bool mOnlyHistory; + bool mShowHistoryFirst; //!< flag for history items to be shown first/last }; #endif // COMMANDITEMMODEL_H diff --git a/configuredialog/configuredialog.cpp b/configuredialog/configuredialog.cpp index 6bb94e4..b9f7c06 100644 --- a/configuredialog/configuredialog.cpp +++ b/configuredialog/configuredialog.cpp @@ -80,6 +80,8 @@ ConfigureDialog::ConfigureDialog(QSettings *settings, const QString &defaultShor connect(ui->shortcutEd->addMenuAction(tr("Reset")), SIGNAL(triggered()), this, SLOT(shortcutReset())); settingsChanged(); + + connect(ui->historyCb, &QAbstractButton::toggled, [this] (bool checked) { mSettings->setValue("dialog/history_first", checked); }); } @@ -95,6 +97,7 @@ void ConfigureDialog::settingsChanged() ui->monitorCbx->setCurrentIndex(mSettings->value("dialog/monitor", -1).toInt() + 1); ui->shortcutEd->setText(mSettings->value("dialog/shortcut", "Alt+F2").toString()); + ui->historyCb->setChecked(mSettings->value("dialog/history_first", true).toBool()); } diff --git a/configuredialog/configuredialog.ui b/configuredialog/configuredialog.ui index 1296f1d..0ac88fc 100644 --- a/configuredialog/configuredialog.ui +++ b/configuredialog/configuredialog.ui @@ -40,6 +40,13 @@ + + + + Show history first + + + diff --git a/dialog.cpp b/dialog.cpp index f3bd74f..e1f1b03 100644 --- a/dialog.cpp +++ b/dialog.cpp @@ -84,7 +84,7 @@ Dialog::Dialog(QWidget *parent) : ui->commandList->setModel(mCommandItemModel); ui->commandList->setEditTriggers(QAbstractItemView::NoEditTriggers); connect(ui->commandList, SIGNAL(clicked(QModelIndex)), this, SLOT(runCommand())); - setFilter(""); + setFilter(QString()); dataChanged(); ui->commandList->setItemDelegate(new LXQt::HtmlDelegate(QSize(32, 32), ui->commandList)); @@ -216,7 +216,7 @@ bool Dialog::editKeyPressEvent(QKeyEvent *event) ui->commandList->currentIndex().row() == 0 ) { - setFilter("", false); + setFilter(QString(), false); return true; } qApp->sendEvent(ui->commandList, event); @@ -228,10 +228,14 @@ bool Dialog::editKeyPressEvent(QKeyEvent *event) ui->commandList->isHidden() ) { - setFilter("", true); + setFilter(QString(), true); + + // set focus to the list so that it highlights the first item correctly, + // and then set it back to the textfield, where it belongs + ui->commandList->setFocus(); + ui->commandEd->setFocus(); return true; } - qApp->sendEvent(ui->commandList, event); return true; @@ -350,6 +354,8 @@ void Dialog::applySettings() mMonitor = mSettings->value("dialog/monitor", -1).toInt(); + mCommandItemModel->showHistoryFirst(mSettings->value("dialog/history_first", true).toBool()); + realign(); mSettings->sync(); } @@ -378,7 +384,7 @@ void Dialog::shortcutChanged(const QString &/*oldShortcut*/, const QString &newS void Dialog::onActiveWindowChanged(WId id) { if (isVisible() && id != winId()) - showHide(); + hide(); } @@ -394,7 +400,11 @@ void Dialog::setFilter(const QString &text, bool onlyHistory) mCommandItemModel->setCommand(trimmedText); mCommandItemModel->showOnlyHistory(onlyHistory); mCommandItemModel->setFilterRegExp(trimmedText); - mCommandItemModel->sort(0); + mCommandItemModel->invalidate(); + + // tidy up layout and select first item + ui->commandList->doItemsLayout(); + ui->commandList->setCurrentIndex(mCommandItemModel->index(0, 0)); } /************************************************ diff --git a/dialog.ui b/dialog.ui index a215d2d..cea0b5d 100644 --- a/dialog.ui +++ b/dialog.ui @@ -37,6 +37,9 @@ + + true + QFrame::NoFrame @@ -86,6 +89,9 @@ + + + QToolButton::InstantPopup @@ -102,6 +108,9 @@ X + + + true diff --git a/main.cpp b/main.cpp index 1cca392..9177f5a 100644 --- a/main.cpp +++ b/main.cpp @@ -26,18 +26,18 @@ * END_COMMON_COPYRIGHT_HEADER */ -#include +#include #include "dialog.h" int main(int argc, char *argv[]) { - LXQt::Application a(argc, argv); + LXQt::SingleApplication a(argc, argv); a.setQuitOnLastWindowClosed(false); - QWidget *hiddenPreviewParent = new QWidget(0, Qt::Tool); - Dialog d(hiddenPreviewParent); - //d.show(); + QWidget hiddenPreviewParent{0, Qt::Tool}; + Dialog d(&hiddenPreviewParent); + a.setActivationWindow(&d); return a.exec(); diff --git a/providers.cpp b/providers.cpp index 4936789..529e15f 100644 --- a/providers.cpp +++ b/providers.cpp @@ -63,7 +63,7 @@ static QString expandCommand(const QString &command, QStringList *arguments=0) wordexp_t words; if (wordexp(command.toLocal8Bit().data(), &words, 0) != 0) - return ""; + return QString(); char **w; w = words.we_wordv; @@ -86,7 +86,7 @@ static QString expandCommand(const QString &command, QStringList *arguments=0) static QString which(const QString &progName) { if (progName.isEmpty()) - return ""; + return QString(); if (progName.startsWith(QDir::separator())) { @@ -95,16 +95,16 @@ static QString which(const QString &progName) return fileInfo.absoluteFilePath(); } - QStringList dirs = QString(getenv("PATH")).split(":"); + const QStringList dirs = QString(getenv("PATH")).split(":"); - foreach (QString dir, dirs) + foreach (const QString &dir, dirs) { QFileInfo fileInfo(QDir(dir), progName); if (fileInfo.isExecutable() && fileInfo.isFile()) return fileInfo.absoluteFilePath(); } - return ""; + return QString(); } @@ -347,7 +347,7 @@ void AppLinkProvider::menuCacheReloadNotify(MenuCache* cache, gpointer user_data void doUpdate(const QDomElement &xml, QHash &items) { - DomElementIterator it(xml, ""); + DomElementIterator it(xml, QString()); while (it.hasNext()) { QDomElement e = it.next(); @@ -561,7 +561,7 @@ void CustomCommandItem::setCommand(const QString &command) if (!mExec.isEmpty()) mComment = QString("%1 %2").arg(mExec, command.section(' ', 1)); else - mComment = ""; + mComment = QString(); } diff --git a/translations/lxqt-runner.ts b/translations/lxqt-runner.ts deleted file mode 100644 index d793666..0000000 --- a/translations/lxqt-runner.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - - - - - Appearance - - - - - Positioning: - - - - - Show on: - - - - - Shortcut: - - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - - - - - Mathematics - - - - diff --git a/translations/lxqt-runner_ar.ts b/translations/lxqt-runner_ar.ts deleted file mode 100644 index 023e529..0000000 --- a/translations/lxqt-runner_ar.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - إعدادات مُطلق ريزر - - - - Runner Settings - - - - - Appearance - المظهر - - - - Positioning: - تحديد الموضع: - - - - Show on: - إظهارٌ على: - - - - Shortcut: - رابطٌ مختصر: - - - Top edge of screen - الحافَّة العليا للشَّاشة - - - Center of screen - مركز الشَّاشة - - - Monitor where the mouse - المراقبة عند مؤشر الفأرة - - - Always on %1 monitor - دوماً في شاشة العرض %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - بادئ التطبيقات - - - Configure lxqt-runner - تهيئة مُطلق نظام ريزر - - - Clear lxqt-runner History - مسح ذاكرة مُنفِّذ برامج ريزر - - - Press "%1" to see dialog. - اضغط "%1" لمشاهدة لوحة الحوار. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - سجلُّ السوابق - - - - Mathematics - الرِّياضيَّات - - - LXQt Power Management - إدارة الطاقة لبيئة ريزر - - - diff --git a/translations/lxqt-runner_cs.ts b/translations/lxqt-runner_cs.ts deleted file mode 100644 index ca7491c..0000000 --- a/translations/lxqt-runner_cs.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Nastavení spouštěče programů - - - - Runner Settings - - - - - Appearance - Vzhled - - - - Positioning: - Umístění: - - - - Show on: - Ukázat na: - - - - Shortcut: - Klávesová zkratka: - - - Top edge of screen - Horní okraj obrazovky - - - Center of screen - Střed obrazovky - - - Monitor where the mouse - Tam, kde je myš - - - Always on %1 monitor - Vždy na %1 obrazovce - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Spouštěč programů - - - Configure lxqt-runner - Nastavit spouštěč programů - - - Clear lxqt-runner History - Smazat historii spouštěče programů - - - Press "%1" to see dialog. - Stiskněte "%1" pro zobrazení dialogu. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historie - - - - Mathematics - Matematika - - - LXQt Power Management - Správa energie - - - diff --git a/translations/lxqt-runner_cs_CZ.ts b/translations/lxqt-runner_cs_CZ.ts deleted file mode 100644 index 79253b4..0000000 --- a/translations/lxqt-runner_cs_CZ.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Nastavení spouštěče programů - - - - Runner Settings - - - - - Appearance - Vzhled - - - - Positioning: - Umístění: - - - - Show on: - Ukázat na: - - - - Shortcut: - Klávesová zkratka: - - - Top edge of screen - Horní okraj obrazovky - - - Center of screen - Střed obrazovky - - - Monitor where the mouse - Tam, kde je myš - - - Always on %1 monitor - Vždy na %1 obrazovce - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Spouštěč programů - - - Configure lxqt-runner - Nastavit spouštěč programů - - - Clear lxqt-runner History - Smazat historii spouštěče programů - - - Press "%1" to see dialog. - Stiskněte "%1" pro zobrazení dialogu. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historie - - - - Mathematics - Matematika - - - LXQt Power Management - Správa energie - - - diff --git a/translations/lxqt-runner_da.ts b/translations/lxqt-runner_da.ts deleted file mode 100644 index a7b55e1..0000000 --- a/translations/lxqt-runner_da.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - - - - - Appearance - - - - - Positioning: - - - - - Show on: - - - - - Shortcut: - - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - - - - - Mathematics - - - - diff --git a/translations/lxqt-runner_da_DK.ts b/translations/lxqt-runner_da_DK.ts deleted file mode 100644 index 53d8496..0000000 --- a/translations/lxqt-runner_da_DK.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Programstarter Indstillinger - - - - Runner Settings - - - - - Appearance - Udseende - - - - Positioning: - Position: - - - - Show on: - Vis på: - - - - Shortcut: - Genvej: - - - Top edge of screen - Skærmens topkant - - - Center of screen - Skærmens midte - - - Monitor where the mouse - Skærmen, hvor musen - - - Always on %1 monitor - Altid på skærm %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Programstarter - - - Configure lxqt-runner - Indstil LXQt programstarter - - - Clear lxqt-runner History - Nulstil lxqt programstarter historik - - - Press "%1" to see dialog. - Tryk "%1" for at se dialog. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historie - - - - Mathematics - Matematik - - - LXQt Power Management - LXQt Strømstyring - - - diff --git a/translations/lxqt-runner_de.ts b/translations/lxqt-runner_de.ts deleted file mode 100644 index 921b020..0000000 --- a/translations/lxqt-runner_de.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - Anwendungsstarter-Einstellungen - - - - Appearance - Aussehen - - - - Positioning: - Positionierung: - - - - Show on: - Anzeigen auf: - - - - Shortcut: - Tastenkürzel: - - - - Top edge of the screen - Bildschirmoberkante - - - - Center of the screen - Bildschirmmitte - - - - Focused screen - Fokussierter Bildschirm - - - - Always on screen %1 - Immer auf Bildschirm %1 - - - - Reset - Zurücksetzen - - - - Dialog - - - Application launcher - Anwendungsstarter - - - - Configure - Konfigurieren - - - - Clear History - Verlauf löschen - - - - Show/hide runner dialog - Dialog anzeigen/verstecken - - - - QObject - - - History - Verlauf - - - - Mathematics - Mathematik - - - diff --git a/translations/lxqt-runner_el.ts b/translations/lxqt-runner_el.ts deleted file mode 100644 index d4b01a4..0000000 --- a/translations/lxqt-runner_el.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Ρυθμίσεις εκτελεστή LXQt - - - - Runner Settings - - - - - Appearance - Εμφάνιση - - - - Positioning: - Θέση: - - - - Show on: - Εμφάνιση σε: - - - - Shortcut: - Συντόμευση: - - - Top edge of screen - Επάνω άκρη της οθόνης - - - Center of screen - Κέντρο της οθόνης - - - Monitor where the mouse - Οθόνη όπου βρίσκεται το ποντίκι - - - Always on %1 monitor - Πάντα στην οθόνη %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Εκκινητής εφαρμογής - - - Configure lxqt-runner - Διαμόρφωση εκτελεστή lxqt - - - Clear lxqt-runner History - Εκκαθάριση ιστορικού εκτελεστή lxqt - - - Press "%1" to see dialog. - Πιέστε "%1" για εμφάνιση διαλόγου. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Ιστορία - - - - Mathematics - Μαθηματικά - - - LXQt Power Management - Διαχείριση ενέργειας LXQt - - - diff --git a/translations/lxqt-runner_eo.ts b/translations/lxqt-runner_eo.ts deleted file mode 100644 index 2df14ea..0000000 --- a/translations/lxqt-runner_eo.ts +++ /dev/null @@ -1,125 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Agordoj de lxqt-runner - - - - Runner Settings - - - - - Appearance - Apero - - - - Positioning: - Loko: - - - - Show on: - Montri en: - - - - Shortcut: - Klavkombino: - - - Top edge of screen - Supra bordo de la ekrano - - - Center of screen - Centro de la ekrano - - - Always on %1 monitor - Ĉiam en %1 monitoro - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lanĉilo de aplikaĵoj - - - Configure lxqt-runner - Agordi lxqt-runner - - - Clear lxqt-runner History - Vakigi kronologion de lxqt-runner - - - Press "%1" to see dialog. - Alkalku "%1" por montri dialogon. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historio - - - - Mathematics - Matematiko - - - LXQt Power Management - Kurentmastrumilo de LXQt - - - diff --git a/translations/lxqt-runner_es.ts b/translations/lxqt-runner_es.ts deleted file mode 100644 index 6494aba..0000000 --- a/translations/lxqt-runner_es.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Configuración de LXQt-runner - - - - Runner Settings - - - - - Appearance - Apariencia - - - - Positioning: - Posición: - - - - Show on: - Mostrar en: - - - - Shortcut: - Acceso directo - - - Top edge of screen - Extremo superior de la pantalla - - - Center of screen - Centro de la pantalla - - - Monitor where the mouse - Monitor donde esté el ratón - - - Always on %1 monitor - Siempre en el monitor %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lanzador de aplicaciones - - - Configure lxqt-runner - Configurar lxqt-runner - - - Clear lxqt-runner History - Limpiar historial de LXQt-Runner - - - Press "%1" to see dialog. - Presione "%1" para ver la pantalla. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historial - - - - Mathematics - Matemáticas - - - LXQt Power Management - Administrador de energía de LXQt - - - diff --git a/translations/lxqt-runner_es_VE.ts b/translations/lxqt-runner_es_VE.ts deleted file mode 100644 index 8f6a817..0000000 --- a/translations/lxqt-runner_es_VE.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Configuraciones de LXQt-Ejecutor - - - - Runner Settings - - - - - Appearance - Apariencia - - - - Positioning: - Posicionamiento: - - - - Show on: - Mostrar en: - - - - Shortcut: - Acceso de tecla: - - - Top edge of screen - En el tope de pantalla - - - Center of screen - Centrar en la pantalla - - - Monitor where the mouse - Pantalla donde este el raton - - - Always on %1 monitor - Siempre en la pantalla %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lanzador de palicaciones - - - Configure lxqt-runner - Configurar lanzador de LXQt - - - Clear lxqt-runner History - Limpiar historial de lxqt-runner - - - Press "%1" to see dialog. - Presiona %1 para ver el dialogo - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historial - - - - Mathematics - Matematicas - - - LXQt Power Management - Manejador de energia de LXQt - - - diff --git a/translations/lxqt-runner_eu.ts b/translations/lxqt-runner_eu.ts deleted file mode 100644 index da243fb..0000000 --- a/translations/lxqt-runner_eu.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQt-runner ezarpenak - - - - Runner Settings - - - - - Appearance - Itxura - - - - Positioning: - Posizioa: - - - - Show on: - Erakutsi hemen: - - - - Shortcut: - Lasterbidea: - - - Top edge of screen - Pantailaren goiko ertza - - - Center of screen - Pantailaren erdia - - - Monitor where the mouse - Monitorea sagua dagoen lekuan - - - Always on %1 monitor - Beti %1 monitorean - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Aplikazio-abiarazlea - - - Configure lxqt-runner - Konfiguratu lxqt-runner - - - Clear lxqt-runner History - Garbitu lxqt-runner historia - - - Press "%1" to see dialog. - Sakatu "%1" elkarrizketa-koadroa ikusteko. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historia - - - - Mathematics - Matematikak - - - LXQt Power Management - LXQt energia-kudeaketa - - - diff --git a/translations/lxqt-runner_fi.ts b/translations/lxqt-runner_fi.ts deleted file mode 100644 index bb0d128..0000000 --- a/translations/lxqt-runner_fi.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQtin käynnistimen asetukset - - - - Runner Settings - - - - - Appearance - Ulkoasu - - - - Positioning: - Sijainti: - - - - Show on: - Näytä: - - - - Shortcut: - Pikanäppäin: - - - Top edge of screen - Näytön ylälaidassa - - - Center of screen - Keskellä näyttöä - - - Monitor where the mouse - Näytöllä, jossa hiiren osoitin on - - - Always on %1 monitor - Aina näytöllä %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Sovelluskäynnistin - - - Configure lxqt-runner - Hallitse LXQtin käynnistintä - - - Clear lxqt-runner History - Tyhjennä LXQt-käynnistimen historia - - - Press "%1" to see dialog. - Paina "%1" nähdäksesi ikkunan. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historia - - - - Mathematics - Matematiikka - - - LXQt Power Management - LXQtin virranhallinta - - - diff --git a/translations/lxqt-runner_fr_FR.ts b/translations/lxqt-runner_fr_FR.ts deleted file mode 100644 index fe18daf..0000000 --- a/translations/lxqt-runner_fr_FR.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Paramètres du lanceur de commandes - - - - Runner Settings - - - - - Appearance - Apparence - - - - Positioning: - Position : - - - - Show on: - Montrer au : - - - - Shortcut: - Raccourci : - - - Top edge of screen - Bord supérieur de l'écran - - - Center of screen - Centre de l'écran - - - Monitor where the mouse - Moniteur où se trouve la souris - - - Always on %1 monitor - Toujours sur le moniteur %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lanceur d'application - - - Configure lxqt-runner - Configurer le lanceur de commandes - - - Clear lxqt-runner History - Effacer l'historique du lanceur de commandes - - - Press "%1" to see dialog. - Appuyer sur "%1" pour voir le dialogue - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Histoire - - - - Mathematics - Mathématiques - - - LXQt Power Management - Gestion de l'énergie - - - diff --git a/translations/lxqt-runner_hu.ts b/translations/lxqt-runner_hu.ts deleted file mode 100644 index 0cabc1b..0000000 --- a/translations/lxqt-runner_hu.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - - - - - Appearance - - - - - Positioning: - - - - - Show on: - - - - - Shortcut: - - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - - - - - Mathematics - - - - diff --git a/translations/lxqt-runner_ia.ts b/translations/lxqt-runner_ia.ts deleted file mode 100644 index 7441e5d..0000000 --- a/translations/lxqt-runner_ia.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - - - - - Appearance - - - - - Positioning: - - - - - Show on: - - - - - Shortcut: - - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - - - - - Mathematics - - - - diff --git a/translations/lxqt-runner_id_ID.ts b/translations/lxqt-runner_id_ID.ts deleted file mode 100644 index 44b61c2..0000000 --- a/translations/lxqt-runner_id_ID.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - - - - - Appearance - - - - - Positioning: - - - - - Show on: - - - - - Shortcut: - - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - - - - - Mathematics - - - - diff --git a/translations/lxqt-runner_it.ts b/translations/lxqt-runner_it.ts deleted file mode 100644 index fd142fc..0000000 --- a/translations/lxqt-runner_it.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Impostazioni di LXQt-runner - - - - Runner Settings - - - - - Appearance - Aspetto - - - - Positioning: - Posizione: - - - - Show on: - Mostra su: - - - - Shortcut: - Scorciatoia: - - - Top edge of screen - Bordo superiore dello schermo - - - Center of screen - Centro dello schermo - - - Monitor where the mouse - Vedi dove è il mouse - - - Always on %1 monitor - Sempre sul monitor %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lanciatore di applicazioni - - - Configure lxqt-runner - Configura LXQt-runner - - - Clear lxqt-runner History - Cancella la cronologia di lxqt-runner - - - Press "%1" to see dialog. - Premi "%1" per vedere la finestra di dialogo. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Cronologia - - - - Mathematics - Matematica - - - LXQt Power Management - Gestione energetica di LXQt - - - diff --git a/translations/lxqt-runner_ja.ts b/translations/lxqt-runner_ja.ts deleted file mode 100644 index 18e614b..0000000 --- a/translations/lxqt-runner_ja.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQt-runnerの設定 - - - - Runner Settings - - - - - Appearance - 外観 - - - - Positioning: - 配置: - - - - Show on: - 表示: - - - - Shortcut: - ショートカット: - - - Top edge of screen - スクリーンの上辺 - - - Center of screen - スクリーンの中央 - - - Monitor where the mouse - マウスの位置を観察 - - - Always on %1 monitor - 常に%1モニタに - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - アプリケーションランチャ - - - Configure lxqt-runner - lxqt-runnerを設定 - - - Clear lxqt-runner History - LXQt-runnerの履歴を消去 - - - Press "%1" to see dialog. - ダイアログを見るには"%1"を押してください。 - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - 履歴 - - - - Mathematics - 計算 - - - LXQt Power Management - LXQt電源管理 - - - diff --git a/translations/lxqt-runner_ko.ts b/translations/lxqt-runner_ko.ts deleted file mode 100644 index bd0c463..0000000 --- a/translations/lxqt-runner_ko.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - - - - - Appearance - - - - - Positioning: - - - - - Show on: - - - - - Shortcut: - - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - - - - - Mathematics - - - - diff --git a/translations/lxqt-runner_lt.ts b/translations/lxqt-runner_lt.ts deleted file mode 100644 index ebbd9b4..0000000 --- a/translations/lxqt-runner_lt.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQt paleidiklio nuostatos - - - - Runner Settings - - - - - Appearance - Išvaizda - - - - Positioning: - Padėtis: - - - - Show on: - Rodyti: - - - - Shortcut: - Nuoroda: - - - Top edge of screen - Viršutiniame ekrano krašte - - - Center of screen - Ekrano centre - - - Monitor where the mouse - Ties pele - - - Always on %1 monitor - Visada „%1“ vaizduoklyje - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Programų paleidiklis - - - Configure lxqt-runner - Konfigūruoti lxqt paleidiklį - - - Clear lxqt-runner History - Išvalyti lxqt paleidiklio istoriją - - - Press "%1" to see dialog. - Norėdami matyti dialogą, spauskite „%1“ - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Istorija - - - - Mathematics - Matematika - - - LXQt Power Management - LXQt energijos valdymas - - - diff --git a/translations/lxqt-runner_nl.ts b/translations/lxqt-runner_nl.ts deleted file mode 100644 index b6fc764..0000000 --- a/translations/lxqt-runner_nl.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQt-uitvoeren Instellingen - - - - Runner Settings - - - - - Appearance - Uiterlijk - - - - Positioning: - Positionering: - - - - Show on: - Toon op: - - - - Shortcut: - Snelkoppeling: - - - Top edge of screen - Bovenkant van het scherm - - - Center of screen - Midden van het scherm - - - Monitor where the mouse - Check positie van de muis - - - Always on %1 monitor - Altijd op %1 monitor - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Programma starter - - - Configure lxqt-runner - Configureer LXQt-uitvoeren - - - Clear lxqt-runner History - Wis lxqt-runner Geschiedenis - - - Press "%1" to see dialog. - Toets "%1" om dialoog te zien. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Geschiedenis - - - - Mathematics - Wiskundig - - - LXQt Power Management - LXQt Energiebeheer - - - diff --git a/translations/lxqt-runner_pl_PL.ts b/translations/lxqt-runner_pl_PL.ts deleted file mode 100644 index c4ec786..0000000 --- a/translations/lxqt-runner_pl_PL.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Ustawienia LXQt-runner - - - - Runner Settings - - - - - Appearance - Wygląd - - - - Positioning: - Pozycja: - - - - Show on: - Pokaż na: - - - - Shortcut: - Skrót: - - - Top edge of screen - Góra ekranu - - - Center of screen - Środek ekranu - - - Monitor where the mouse - Tam, gdzie mysz - - - Always on %1 monitor - Zawsze na %1 ekranie - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Wyzwalacz programu - - - Configure lxqt-runner - Konfiguruj lxqt-runner - - - Clear lxqt-runner History - Wyczyść historię lxqt-runnera - - - Press "%1" to see dialog. - Naciśnij "%1", aby zobaczyć okno. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Historia - - - - Mathematics - Matematyka - - - LXQt Power Management - Zarządzanie zasilaniem LXQt - - - diff --git a/translations/lxqt-runner_pt.ts b/translations/lxqt-runner_pt.ts deleted file mode 100644 index eaa88dc..0000000 --- a/translations/lxqt-runner_pt.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Definições do LXQt-runner - - - - Runner Settings - - - - - Appearance - Aparência - - - - Positioning: - Posição: - - - - Show on: - Mostrar: - - - - Shortcut: - Atalho: - - - Top edge of screen - Margem superior do ecrã - - - Center of screen - Centro do ecrã - - - Monitor where the mouse - Monitor em que está o rato - - - Always on %1 monitor - Sempre no monitor %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lançador de aplicações - - - Configure lxqt-runner - Configurar lxqt-runner - - - Clear lxqt-runner History - Limpar histórico do lxqt-runner - - - Press "%1" to see dialog. - Prima "%1" para abrir a caixa de diálogo. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Histórico - - - - Mathematics - Matemática - - - LXQt Power Management - Gestão de energia do LXQt - - - diff --git a/translations/lxqt-runner_pt_BR.ts b/translations/lxqt-runner_pt_BR.ts deleted file mode 100644 index a615df8..0000000 --- a/translations/lxqt-runner_pt_BR.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Configurações do executor do LXQt - - - - Runner Settings - - - - - Appearance - Aparência - - - - Positioning: - Posicionamento: - - - - Show on: - Exibir em: - - - - Shortcut: - Atalho: - - - Top edge of screen - Borda superior da tela - - - Center of screen - Centro da tela - - - Monitor where the mouse - Onde o mouse estiver no monitor - - - Always on %1 monitor - Sempre no monitor %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lançador de aplicativo - - - Configure lxqt-runner - Configurar o executor do LXQt - - - Clear lxqt-runner History - Limpar o histórico do executor do LXQt - - - Press "%1" to see dialog. - Pressione "%1" para ver o diálogo. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Histórico - - - - Mathematics - Matemática - - - LXQt Power Management - Gerenciamento de energia do LXQt - - - diff --git a/translations/lxqt-runner_ro_RO.ts b/translations/lxqt-runner_ro_RO.ts deleted file mode 100644 index 11cd5d9..0000000 --- a/translations/lxqt-runner_ro_RO.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Setări lxqt-runner - - - - Runner Settings - - - - - Appearance - Aspect - - - - Positioning: - Poziție: - - - - Show on: - Afișează pe: - - - - Shortcut: - Scurtătură: - - - Top edge of screen - Marginea superioară a ecranului - - - Center of screen - Centrul ecranului - - - Monitor where the mouse - Monitorizează unde este mausul - - - Always on %1 monitor - Întotdeauna pe monitorul %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Lansator de aplicații - - - Configure lxqt-runner - Configurare lxqt-runner - - - Clear lxqt-runner History - Curăță istoricul lxqt-runner - - - Press "%1" to see dialog. - Apăsați "%1" pentru a afișa dialogul. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Istoric - - - - Mathematics - Matematică - - - LXQt Power Management - Gestiune alimentare LXQt - - - diff --git a/translations/lxqt-runner_ru.ts b/translations/lxqt-runner_ru.ts deleted file mode 100644 index e78433e..0000000 --- a/translations/lxqt-runner_ru.ts +++ /dev/null @@ -1,97 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - Настройки ускорителя запуска - - - - Appearance - Внешний вид - - - - Positioning: - Позиция: - - - - Show on: - Показывать на: - - - - Shortcut: - Сочетание клавиш: - - - - Top edge of the screen - Верхней границе экрана - - - - Center of the screen - В центре экрана - - - - Focused screen - Активном экране - - - - Always on screen %1 - Всегда на %1 экране - - - - Reset - Сброс - - - - Dialog - - - Application launcher - Ускоритель запуска программ - - - - Configure - Настроить - - - - Clear History - Очистить историю - - - - Show/hide runner dialog - Показать/скрыть окно ускорителя - - - - QObject - - - History - Из истории - - - - Mathematics - Математика - - - Power Management - Управление энергопотреблением - - - diff --git a/translations/lxqt-runner_ru_RU.ts b/translations/lxqt-runner_ru_RU.ts deleted file mode 100644 index 2b56532..0000000 --- a/translations/lxqt-runner_ru_RU.ts +++ /dev/null @@ -1,97 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - Настройки ускорителя запуска - - - - Appearance - Внешний вид - - - - Positioning: - Позиция: - - - - Show on: - Показывать на: - - - - Shortcut: - Сочетание клавиш: - - - - Top edge of the screen - Верхней границе экрана - - - - Center of the screen - В центре экрана - - - - Focused screen - Активном экране - - - - Always on screen %1 - Всегда на %1 экране - - - - Reset - Сброс - - - - Dialog - - - Application launcher - Ускоритель запуска программ - - - - Configure - Настроить - - - - Clear History - Очистить историю - - - - Show/hide runner dialog - Показать/скрыть окно ускорителя - - - - QObject - - - History - Из истории - - - - Mathematics - Математика - - - Power Management - Управление энергопотреблением - - - diff --git a/translations/lxqt-runner_sk_SK.ts b/translations/lxqt-runner_sk_SK.ts deleted file mode 100644 index 6a6a2e0..0000000 --- a/translations/lxqt-runner_sk_SK.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Nastavenia Spúšťača LXQt - - - - Runner Settings - - - - - Appearance - Vzhľad - - - - Positioning: - Pozícia: - - - - Show on: - Kde zobrazovať: - - - - Shortcut: - Skratka: - - - Top edge of screen - Horný okraj obrazovky - - - Center of screen - Stred obrazovky - - - Monitor where the mouse - Monitor, kde je myš - - - Always on %1 monitor - Vždy na monitore %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Spúšťač aplikácií - - - Configure lxqt-runner - Nastaviť Spúšťač LXQt - - - Press "%1" to see dialog. - Stlačením „%1“ zobrazte dialóg. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - História - - - - Mathematics - Matematika - - - diff --git a/translations/lxqt-runner_sl.ts b/translations/lxqt-runner_sl.ts deleted file mode 100644 index bf76547..0000000 --- a/translations/lxqt-runner_sl.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Nastavitve za LXQt-runner - - - - Runner Settings - - - - - Appearance - Videz - - - - Positioning: - Položaj: - - - - Show on: - Pokaži na: - - - - Shortcut: - Bližnjica: - - - Top edge of screen - Vrhnjem robu zaslona - - - Center of screen - Sredini zaslona - - - Monitor where the mouse - Zaslonu, kjer je miška - - - Always on %1 monitor - Vedno na zaslonu %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Zaganjalnik programov - - - Configure lxqt-runner - Nastavitve za LXQt-runner - - - Clear lxqt-runner History - Počisti zgodovino za LXQt-runner - - - Press "%1" to see dialog. - Za prikaz pogovornega okna pritisnite »%1«. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Zgodovina - - - - Mathematics - Matematika - - - LXQt Power Management - Upravljanje z energijo - - - diff --git a/translations/lxqt-runner_sr@latin.ts b/translations/lxqt-runner_sr@latin.ts deleted file mode 100644 index 7ac281b..0000000 --- a/translations/lxqt-runner_sr@latin.ts +++ /dev/null @@ -1,93 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - - - - - Appearance - - - - - Positioning: - - - - - Show on: - - - - - Shortcut: - - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - - - - - Mathematics - - - - diff --git a/translations/lxqt-runner_sr_BA.ts b/translations/lxqt-runner_sr_BA.ts deleted file mode 100644 index 56f0313..0000000 --- a/translations/lxqt-runner_sr_BA.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Подешавања Рејзор-покретача - - - - Runner Settings - - - - - Appearance - Изглед - - - - Positioning: - Позиција: - - - - Show on: - Прикажи на: - - - - Shortcut: - Пречица: - - - Top edge of screen - горња ивица екрана - - - Center of screen - центар екрана - - - Monitor where the mouse - екрану на ком је миш - - - Always on %1 monitor - увијек на екрану %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Покретач програма - - - Configure lxqt-runner - Подеси Рејзор-покретача - - - Press "%1" to see dialog. - Притисните „%1“ да бисте видјели дијалог. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Историјат - - - - Mathematics - Математика - - - diff --git a/translations/lxqt-runner_sr_RS.ts b/translations/lxqt-runner_sr_RS.ts deleted file mode 100644 index 94d2bcc..0000000 --- a/translations/lxqt-runner_sr_RS.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Подешавања Рејзор-покретача - - - - Runner Settings - - - - - Appearance - Изглед - - - - Positioning: - Позиција: - - - - Show on: - Прикажи на: - - - - Shortcut: - Пречица: - - - Top edge of screen - горња ивица екрана - - - Center of screen - центар екрана - - - Monitor where the mouse - екрану на ком је миш - - - Always on %1 monitor - увек на екрану %1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Покретач програма - - - Configure lxqt-runner - Подеси Рејзор-покретача - - - Press "%1" to see dialog. - Притисните „%1“ да бисте видели дијалог. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Историјат - - - - Mathematics - Математика - - - diff --git a/translations/lxqt-runner_th_TH.ts b/translations/lxqt-runner_th_TH.ts deleted file mode 100644 index cecc84e..0000000 --- a/translations/lxqt-runner_th_TH.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - ค่าตั้งกล่องป้อนคำสั่ง-lxqt - - - - Runner Settings - - - - - Appearance - รูปลักษณ์ - - - - Positioning: - ตำแหน่ง: - - - - Show on: - แสดงบน: - - - - Shortcut: - ปุ่มลัด: - - - Top edge of screen - บริเวณขอบบนของจอภาพ - - - Center of screen - บริเวณส่วนกลางของจอภาพ - - - Monitor where the mouse - จอภาพที่เมาส์อยู่ - - - Always on %1 monitor - ประจำอยู่ที่จอภาพ %1 เสมอ - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - ปุ่มเรียกใช้งานโปรแกรม - - - Configure lxqt-runner - ปรับแต่งกล่องป้อนคำสั่ง-lxqt - - - Clear lxqt-runner History - ล้างประวัติกล่องป้อนคำสั่ง-lxqt - - - Press "%1" to see dialog. - กด "%1" เพื่อดูกล่องโต้ตอบ - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - ประวัติ - - - - Mathematics - การคำนวณเลข - - - LXQt Power Management - การจัดการพลังงานของ LXQt - - - diff --git a/translations/lxqt-runner_tr.ts b/translations/lxqt-runner_tr.ts deleted file mode 100644 index eb899d8..0000000 --- a/translations/lxqt-runner_tr.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQt-çalıştırıcı Ayarları - - - - Runner Settings - - - - - Appearance - Görünüm - - - - Positioning: - Konumlandırma: - - - - Show on: - Şunda Göster: - - - - Shortcut: - Kısayol: - - - Top edge of screen - Ekranın üst köşesi - - - Center of screen - Ekranın merkezi - - - Monitor where the mouse - Fare konumunda görüntüle - - - Always on %1 monitor - Her zaman %1 ekranında - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Uygulama başlatıcı - - - Configure lxqt-runner - LXQt-çalıştırıcıyı yapılandır - - - Clear lxqt-runner History - LXQt-çalıştırıcı geçmişini temizle - - - Press "%1" to see dialog. - Diyaloğu görmek için "%1" üzerine basın - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Geçmiş - - - - Mathematics - İşlemler - - - LXQt Power Management - LXQt Güç Yönetimi - - - diff --git a/translations/lxqt-runner_uk.ts b/translations/lxqt-runner_uk.ts deleted file mode 100644 index 30e412d..0000000 --- a/translations/lxqt-runner_uk.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - Налаштування запускача програм LXQt - - - - Runner Settings - - - - - Appearance - Вигляд - - - - Positioning: - Розташування: - - - - Show on: - Монітор: - - - - Shortcut: - Клавіатурне скорочення: - - - Top edge of screen - Зверху екрану - - - Center of screen - Посередині екрану - - - Monitor where the mouse - Де курсор миші - - - Always on %1 monitor - Завжди №%1 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - Запускач програм - - - Configure lxqt-runner - Налаштувати запускач програм LXQt - - - Clear lxqt-runner History - Стерти історію lxqt-runner - - - Press "%1" to see dialog. - Натисніть "%1" для відкриття діалогу. - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - Історія - - - - Mathematics - Математика - - - LXQt Power Management - Керування живленням LXQt - - - diff --git a/translations/lxqt-runner_zh_CN.ts b/translations/lxqt-runner_zh_CN.ts deleted file mode 100644 index eb0dc60..0000000 --- a/translations/lxqt-runner_zh_CN.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQt启动器设置 - - - - Runner Settings - - - - - Appearance - 外观 - - - - Positioning: - 位置: - - - - Show on: - 显示在: - - - - Shortcut: - 快捷键: - - - Top edge of screen - 屏幕顶部 - - - Center of screen - 屏幕中部 - - - Monitor where the mouse - 鼠标所在的显示器 - - - Always on %1 monitor - 总是在 %1 显示器 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - 应用程序启动器 - - - Configure lxqt-runner - 配置LXQt启动器 - - - Clear lxqt-runner History - 清空 lxqt-runner 历史 - - - Press "%1" to see dialog. - 按下 "%1" 以查看对话框。 - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - 历史 - - - - Mathematics - 数学 - - - LXQt Power Management - LXQt 电源管理 - - - diff --git a/translations/lxqt-runner_zh_TW.ts b/translations/lxqt-runner_zh_TW.ts deleted file mode 100644 index 449f7f6..0000000 --- a/translations/lxqt-runner_zh_TW.ts +++ /dev/null @@ -1,129 +0,0 @@ - - - - - ConfigureDialog - - LXQt-runner Settings - LXQt快速執行設定 - - - - Runner Settings - - - - - Appearance - 外觀 - - - - Positioning: - 位於: - - - - Show on: - 顯示在: - - - - Shortcut: - 快捷鍵: - - - Top edge of screen - 螢幕頂端 - - - Center of screen - 螢幕中間 - - - Monitor where the mouse - 在滑鼠所在的顯示器 - - - Always on %1 monitor - 總是在%1顯示器 - - - - Top edge of the screen - - - - - Center of the screen - - - - - Focused screen - - - - - Always on screen %1 - - - - - Reset - - - - - Dialog - - - Application launcher - 應用程式啟動器 - - - Configure lxqt-runner - 設定LXQt快速執行 - - - Clear lxqt-runner History - 清除LXQt快速執行的歷史紀錄 - - - Press "%1" to see dialog. - 按下"%1"檢視對話。 - - - - Configure - - - - - Clear History - - - - - Show/hide runner dialog - - - - - QObject - - - History - 歷史記錄 - - - - Mathematics - 數學 - - - LXQt Power Management - LXQt電源管理 - - -