diff -Nru lxqt-runner-0.14.1/autostart/translations/lxqt-runner_hr.desktop lxqt-runner-0.16.0/autostart/translations/lxqt-runner_hr.desktop --- lxqt-runner-0.14.1/autostart/translations/lxqt-runner_hr.desktop 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-runner-0.16.0/autostart/translations/lxqt-runner_hr.desktop 2020-10-31 09:00:25.000000000 +0000 @@ -0,0 +1,2 @@ +# Translations +Name[hr]=Pokretač diff -Nru lxqt-runner-0.14.1/CHANGELOG lxqt-runner-0.16.0/CHANGELOG --- lxqt-runner-0.14.1/CHANGELOG 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/CHANGELOG 2020-10-31 09:00:25.000000000 +0000 @@ -1,3 +1,15 @@ +lxqt-runner-0.16.0 / 2020-11-01 +=============================== + * Don't use QProcess deprecates methods. + * Silenced the warnings about unused function parameters. + * Drop the obsolete classs QDesktopWidget. + +lxqt-runner-0.15.0 / 2020-04-23 +=============================== + * cmake: Enhance lxqt-globalkeys minimum required version. + * Smoother search. + * Removed deprecated QDesktopWidget. + lxqt-runner-0.14.1 / 2019-02-24 =============================== diff -Nru lxqt-runner-0.14.1/CMakeLists.txt lxqt-runner-0.16.0/CMakeLists.txt --- lxqt-runner-0.14.1/CMakeLists.txt 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/CMakeLists.txt 2020-10-31 09:00:25.000000000 +0000 @@ -27,23 +27,23 @@ # Minimum Versions set(KF5_MINIMUM_VERSION "5.36.0") set(LIBMENUCACHE_MINIMUM_VERSION "1.1.0") -set(LXQT_MINIMUM_VERSION "0.14.1") -set(QT_MINIMUM_VERSION "5.7.1") +set(LXQT_MINIMUM_VERSION "0.16.0") +set(LXQT_GLOBALKEYS_MINIMUM_VERSION "0.16.0") +set(QT_MINIMUM_VERSION "5.12") find_package(Qt5Widgets ${QT_MINIMUM_VERSION} REQUIRED) find_package(Qt5Xml ${QT_MINIMUM_VERSION} REQUIRED) find_package(Qt5LinguistTools ${QT_MINIMUM_VERSION} REQUIRED) find_package(KF5WindowSystem ${KF5_MINIMUM_VERSION} REQUIRED) find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED) -find_package(lxqt-globalkeys ${LXQT_MINIMUM_VERSION} REQUIRED) -find_package(lxqt-globalkeys-ui ${LXQT_MINIMUM_VERSION} REQUIRED) +find_package(lxqt-globalkeys-ui ${LXQT_GLOBALKEYS_MINIMUM_VERSION} REQUIRED) message(STATUS "Building with Qt${Qt5Core_VERSION}") include(LXQtPreventInSourceBuilds) include(LXQtCompilerSettings NO_POLICY_SCOPE) # Patch Version -set(LXQT_RUNNER_PATCH_VERSION 1) +set(LXQT_RUNNER_PATCH_VERSION 0) set(LXQT_RUNNER_VERSION ${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_RUNNER_PATCH_VERSION}) add_definitions( "-DLXQT_RUNNER_VERSION=\"${LXQT_RUNNER_VERSION}\"" @@ -140,12 +140,6 @@ PRIVATE "$<$:VBOX_ENABLED>" PRIVATE "$<$:VBOX_HEADLESS_ENABLED>" PRIVATE "$<$:HAVE_MENU_CACHE=1>" - PRIVATE - "QT_USE_QSTRINGBUILDER" - "QT_NO_CAST_FROM_ASCII" - "QT_NO_CAST_TO_ASCII" - "QT_NO_URL_CAST_FROM_STRING" - "QT_NO_CAST_FROM_BYTEARRAY" ) target_link_libraries(${PROJECT_NAME} diff -Nru lxqt-runner-0.14.1/configuredialog/configuredialog.cpp lxqt-runner-0.16.0/configuredialog/configuredialog.cpp --- lxqt-runner-0.14.1/configuredialog/configuredialog.cpp 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/configuredialog/configuredialog.cpp 2020-10-31 09:00:25.000000000 +0000 @@ -33,7 +33,7 @@ #include #include -#include +#include #include #include #include @@ -63,11 +63,10 @@ connect(ui->positionCbx, SIGNAL(currentIndexChanged(int)), this, SLOT(positionCbxChanged(int))); // Monitor .................................. - QDesktopWidget *desktop = qApp->desktop(); ui->monitorCbx->addItem(tr("Focused screen"), QVariant(-1)); - int monCnt = desktop->screenCount(); + const int monCnt = QGuiApplication::screens().size(); for (int i = 0; i < monCnt; ++i) ui->monitorCbx->addItem(tr("Always on screen %1").arg(i + 1), QVariant(i)); diff -Nru lxqt-runner-0.14.1/debian/changelog lxqt-runner-0.16.0/debian/changelog --- lxqt-runner-0.14.1/debian/changelog 2020-02-15 18:56:35.000000000 +0000 +++ lxqt-runner-0.16.0/debian/changelog 2021-01-10 23:28:45.000000000 +0000 @@ -1,22 +1,19 @@ -lxqt-runner (0.14.1-1ubuntu2) focal; urgency=medium +lxqt-runner (0.16.0-0~ppa1) focal; urgency=medium - * Updated rules to match debian unstable. + * Sync with Debian. - -- Raman Sarda Sun, 16 Feb 2020 00:26:35 +0530 + -- Julien Lavergne Mon, 11 Jan 2021 00:28:45 +0100 -lxqt-runner (0.14.1-1ubuntu1) focal; urgency=low +lxqt-runner (0.16.0-1) unstable; urgency=medium - * Merge from Debian unstable. Remaining changes: - - Using debhelper-compat. - - Bump miminum requirements in build deps. - - Updated manpages. - - Removed whitespace in debian/source/options. - - Added upstream metadata. - - keeping ubutu-side tweaks of writing some build deps in one line. - - Updated copyright. - - Updated debian/rules. + [ Alf Gaida ] + * Switched to gbp + * Bumped Standards-Version to 4.4.0, no changes needed + + [ Andrew Lee (李健秋) ] + * New upstream release. - -- Raman Sarda Wed, 12 Feb 2020 11:43:52 +0530 + -- Andrew Lee (李健秋) Thu, 07 Jan 2021 15:31:23 +0800 lxqt-runner (0.14.1-1) unstable; urgency=medium @@ -29,13 +26,6 @@ -- Alf Gaida Mon, 25 Feb 2019 01:07:36 +0100 -lxqt-runner (0.14.1-0ubuntu1) disco; urgency=medium - - * New upstream release. - * Run wrap-and-sort. - - -- Simon Quigley Sat, 09 Mar 2019 13:29:08 -0600 - lxqt-runner (0.14.0-1) unstable; urgency=medium * Cherry-picking new upstream version 0.14.0. @@ -53,16 +43,6 @@ -- Alf Gaida Sun, 27 Jan 2019 23:37:58 +0100 -lxqt-runner (0.14.0-0ubuntu1) disco; urgency=medium - - * New upstream release. - - Bump build dependencies. - * Bump Standards-version to 4.3.0, no changes needed. - * Bump debhelper compat to 12, no changes needed. - * Add a lxqt-runner-l10n package. - - -- Simon Quigley Sat, 26 Jan 2019 01:24:46 -0600 - lxqt-runner (0.13.0-1) unstable; urgency=medium * Cherry-picking new upstream version 0.13.0. @@ -75,25 +55,6 @@ -- Alf Gaida Fri, 25 May 2018 00:30:26 +0200 -lxqt-runner (0.13.0-0ubuntu1) cosmic; urgency=medium - - * New upstream release. - * Update build dependencies. - * Remove patches applied upstream. - - -- Simon Quigley Wed, 23 May 2018 22:41:57 -0500 - -lxqt-runner (0.12.0-6ubuntu1) cosmic; urgency=medium - - * Merge from Debian Sid. Remaining changes: - - Cherry-pick an upstream commit: - + AppLinkItem: Make genericName searchable. - * make-genericName-searchable.patch - * Upstream commit c47a674. - * Change the Vcs entries to be Lubuntu-specific. - - -- Simon Quigley Mon, 21 May 2018 00:13:34 -0500 - lxqt-runner (0.12.0-6) unstable; urgency=medium * Changed Source and watch to lxqt @@ -114,16 +75,6 @@ -- Alf Gaida Mon, 23 Apr 2018 20:08:15 +0200 -lxqt-runner (0.12.0-4ubuntu1) bionic; urgency=medium - - * Cherry-pick an upstream commit because the upstream release cycle is - horribly slow: - - AppLinkItem: Make genericName searchable. - + make-genericName-searchable.patch - + Upstream commit c47a674. - - -- Simon Quigley Mon, 05 Feb 2018 20:34:08 -0600 - lxqt-runner (0.12.0-4) unstable; urgency=medium * Bumped Standards to 4.1.2, no changes needed @@ -261,4 +212,3 @@ * Adding upstream version 0.9.0. -- Alf Gaida Sun, 15 Feb 2015 18:41:53 +0100 - diff -Nru lxqt-runner-0.14.1/debian/control lxqt-runner-0.16.0/debian/control --- lxqt-runner-0.14.1/debian/control 2020-02-12 06:14:35.000000000 +0000 +++ lxqt-runner-0.16.0/debian/control 2021-01-10 23:18:08.000000000 +0000 @@ -1,31 +1,32 @@ Source: lxqt-runner -Maintainer: Lubuntu Developers -XSBC-Original-Maintainer: LXQt Packaging Team +Maintainer: LXQt Packaging Team Uploaders: Alf Gaida , + Andrew Lee (李健秋) , ChangZhuo Chen (陳昌倬) Section: x11 Priority: optional Build-Depends: debhelper-compat (= 12), libkf5windowsystem-dev, - liblxqt0-dev (>= 0.14.1~), - liblxqt-globalkeys0-dev (>= 0.14.1~), - liblxqt-globalkeys-ui0-dev (>= 0.14.1~), + liblxqt0-dev (>= 0.16.0~), + liblxqt-globalkeys0-dev (>= 0.16.0~), + liblxqt-globalkeys-ui0-dev (>= 0.16.0~), libmuparser-dev, libqt5svg5-dev, libqt5x11extras5-dev, - libx11-dev, - qtbase5-private-dev -Standards-Version: 4.3.0 -Vcs-Browser: https://phab.lubuntu.me/source/lxqt-runner/ -Vcs-Git: https://phab.lubuntu.me/source/lxqt-runner.git -XS-Debian-Vcs-Browser: https://salsa.debian.org/lxqt-team/lxqt-runner -XS-Debian-Vcs-Git: https://salsa.debian.org/lxqt-team/lxqt-runner.git + libx11-dev +Standards-Version: 4.4.0 +Vcs-Browser: https://salsa.debian.org/lxqt-team/lxqt-runner +Vcs-Git: https://salsa.debian.org/lxqt-team/lxqt-runner.git Homepage: https://github.com/lxqt/lxqt-runner Package: lxqt-runner Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends} -Recommends: lxqt-policykit, lxqt-qtplugin, lxqt-runner-l10n, lxqt-session +Depends: ${misc:Depends}, + ${shlibs:Depends} +Recommends: lxqt-runner-l10n, + lxqt-policykit, + lxqt-qtplugin, + lxqt-session Suggests: lxqt | lxqt-core Breaks: lxqt-common (<< 0.12.0) Replaces: lxqt-common (<< 0.12.0) @@ -39,7 +40,8 @@ Architecture: all Multi-Arch: foreign Section: localization -Depends: qttranslations5-l10n, ${misc:Depends} +Depends: ${misc:Depends}, + qttranslations5-l10n Breaks: lxqt-runner (<< 0.11.0) Replaces: lxqt-runner (<< 0.11.0) Description: Language package for lxqt-runner diff -Nru lxqt-runner-0.14.1/debian/gbp.conf lxqt-runner-0.16.0/debian/gbp.conf --- lxqt-runner-0.14.1/debian/gbp.conf 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-runner-0.16.0/debian/gbp.conf 2021-01-10 23:18:08.000000000 +0000 @@ -0,0 +1,6 @@ +[DEFAULT] +debian-branch = debian/sid +upstream-branch = upstream/latest +pristine-tar = True +compression = xz + diff -Nru lxqt-runner-0.14.1/debian/lxqt-runner.install lxqt-runner-0.16.0/debian/lxqt-runner.install --- lxqt-runner-0.14.1/debian/lxqt-runner.install 2020-02-12 05:58:14.000000000 +0000 +++ lxqt-runner-0.16.0/debian/lxqt-runner.install 2021-01-10 23:18:08.000000000 +0000 @@ -1,2 +1,2 @@ etc/xdg/autostart/lxqt-runner.desktop -usr/bin/lxqt-runner +usr/bin/lxqt-runner diff -Nru lxqt-runner-0.14.1/debian/rules lxqt-runner-0.16.0/debian/rules --- lxqt-runner-0.14.1/debian/rules 2020-02-15 18:56:14.000000000 +0000 +++ lxqt-runner-0.16.0/debian/rules 2021-01-10 23:18:08.000000000 +0000 @@ -13,7 +13,6 @@ override_dh_auto_configure: dh_auto_configure -- \ - -DPULL_TRANSLATIONS=OFF \ -DUPDATE_TRANSLATIONS=OFF \ -DUSE_MENU_CACHE=OFF \ -DRUNNER_MATH=ON \ diff -Nru lxqt-runner-0.14.1/debian/upstream/metadata lxqt-runner-0.16.0/debian/upstream/metadata --- lxqt-runner-0.14.1/debian/upstream/metadata 2020-02-12 06:14:35.000000000 +0000 +++ lxqt-runner-0.16.0/debian/upstream/metadata 2021-01-10 23:18:08.000000000 +0000 @@ -4,3 +4,4 @@ Changelog: https://github.com/lxqt/lxqt-runner/blob/master/CHANGELOG Repository: https://github.com/lxqt/lxqt-runner Repository-Browser: https://github.com/lxqt/lxqt-runner + diff -Nru lxqt-runner-0.14.1/dialog.cpp lxqt-runner-0.16.0/dialog.cpp --- lxqt-runner-0.14.1/dialog.cpp 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/dialog.cpp 2020-10-31 09:00:25.000000000 +0000 @@ -39,9 +39,11 @@ #include #include #include + +#include #include #include -#include +#include #include #include #include @@ -49,6 +51,7 @@ #include #include #include +#include #include #include @@ -75,10 +78,18 @@ connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(hide())); connect(mSettings, SIGNAL(settingsChanged()), this, SLOT(applySettings())); + mSearchTimer.setSingleShot(true); + connect(&mSearchTimer, &QTimer::timeout, ui->commandEd, [this] { + setFilter(ui->commandEd->text()); + }); + mSearchTimer.setInterval(350); // typing speed (not very fast) + ui->commandEd->installEventFilter(this); - connect(ui->commandEd, SIGNAL(textChanged(QString)), this, SLOT(setFilter(QString))); - connect(ui->commandEd, SIGNAL(returnPressed()), this, SLOT(runCommand())); + connect(ui->commandEd, &QLineEdit::textChanged, [this] (QString const &) { + mSearchTimer.start(); + }); + connect(ui->commandEd, &QLineEdit::returnPressed, this, &Dialog::runCommand); mCommandItemModel = new CommandItemModel(mSettings->value(QL1S("dialog/history_use"), true).toBool(), this); ui->commandList->installEventFilter(this); @@ -92,11 +103,11 @@ // Popup menu ............................... QAction *a = new QAction(QIcon::fromTheme(QSL("configure")), tr("Configure"), this); - connect(a, SIGNAL(triggered()), this, SLOT(showConfigDialog())); + connect(a, &QAction::triggered, this, &Dialog::showConfigDialog); addAction(a); a = new QAction(QIcon::fromTheme(QSL("edit-clear-history")), tr("Clear History"), this); - connect(a, SIGNAL(triggered()), mCommandItemModel, SLOT(clearHistory())); + connect(a, &QAction::triggered, mCommandItemModel, &CommandItemModel::clearHistory); addAction(a); mPowerManager = new LXQt::PowerManager(this); @@ -113,17 +124,22 @@ applySettings(); - connect(QApplication::desktop(), SIGNAL(screenCountChanged(int)), SLOT(realign())); - connect(QApplication::desktop(), SIGNAL(workAreaResized(int)), SLOT(realign())); - connect(mGlobalShortcut, SIGNAL(activated()), this, SLOT(showHide())); - connect(mGlobalShortcut, SIGNAL(shortcutChanged(QString,QString)), this, SLOT(shortcutChanged(QString,QString))); - connect(KWindowSystem::self(), SIGNAL(activeWindowChanged(WId)), this, SLOT(onActiveWindowChanged(WId))); + // screen updates + connect(qApp, &QApplication::screenAdded, this, &Dialog::realign); + connect(qApp, &QApplication::screenRemoved, this, &Dialog::realign); + const auto primaryScreen = QGuiApplication::primaryScreen(); + if (primaryScreen != nullptr) + connect(primaryScreen, &QScreen::availableGeometryChanged, this, &Dialog::realign); + + connect(mGlobalShortcut, &GlobalKeyShortcut::Action::activated, this, &Dialog::showHide); + connect(mGlobalShortcut, &GlobalKeyShortcut::Action::shortcutChanged, this, &Dialog::shortcutChanged); + connect(KWindowSystem::self(), &KWindowSystem::activeWindowChanged, this, &Dialog::onActiveWindowChanged); connect(KWindowSystem::self(), &KWindowSystem::currentDesktopChanged, this, &Dialog::onCurrentDesktopChanged); resize(mSettings->value(QL1S("dialog/width"), 400).toInt(), size().height()); // TEST - connect(mCommandItemModel, SIGNAL(layoutChanged()), this, SLOT(dataChanged())); + connect(mCommandItemModel, &CommandItemModel::layoutChanged, this, &Dialog::dataChanged); } @@ -160,7 +176,7 @@ /************************************************ ************************************************/ -void Dialog::resizeEvent(QResizeEvent *event) +void Dialog::resizeEvent(QResizeEvent * /*event*/) { mSettings->setValue(QL1S("dialog/width"), size().width()); } @@ -316,11 +332,14 @@ { QRect desktop; - int screen = mMonitor; - if (mMonitor < 0 || mMonitor > QApplication::desktop()->screenCount() - 1) - screen = QApplication::desktop()->screenNumber(QCursor::pos()); + int screenNumber = mMonitor; + const auto screens = QGuiApplication::screens(); + if (mMonitor < 0 || mMonitor > screens.size() - 1) { + const auto screen = QGuiApplication::screenAt(QCursor::pos()); + screenNumber = screen ? screens.indexOf(screen) : 0; + } - desktop = QApplication::desktop()->availableGeometry(screen).intersected(KWindowSystem::workArea(screen)); + desktop = screens.at(screenNumber)->availableGeometry().intersected(KWindowSystem::workArea(screenNumber)); QRect rect = this->geometry(); rect.moveCenter(desktop.center()); diff -Nru lxqt-runner-0.14.1/dialog.h lxqt-runner-0.16.0/dialog.h --- lxqt-runner-0.14.1/dialog.h 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/dialog.h 2020-10-31 09:00:25.000000000 +0000 @@ -29,6 +29,7 @@ #define DIALOG_H #include +#include namespace Ui { class Dialog; @@ -82,6 +83,8 @@ ConfigureDialog *mConfigureDialog; + QTimer mSearchTimer; + private slots: void realign(); void applySettings(); diff -Nru lxqt-runner-0.14.1/providers.cpp lxqt-runner-0.16.0/providers.cpp --- lxqt-runner-0.14.1/providers.cpp 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/providers.cpp 2020-10-31 09:00:25.000000000 +0000 @@ -584,7 +584,7 @@ /************************************************ ************************************************/ -bool CustomCommandItem::compare(const QRegExp ®Exp) const +bool CustomCommandItem::compare(const QRegExp & /*regExp*/) const { return !mComment.isEmpty(); } @@ -593,7 +593,7 @@ /************************************************ ************************************************/ -unsigned int CustomCommandItem::rank(const QString &pattern) const +unsigned int CustomCommandItem::rank(const QString & /*pattern*/) const { return 0; } @@ -972,7 +972,7 @@ this, SLOT(newListOfMaps(QList >))); connect(mExternalProcess, SIGNAL(readyRead()), this, SLOT(readFromProcess())); - mExternalProcess->start(externalProgram); + mExternalProcess->start(externalProgram, QStringList()); } void ExternalProvider::setSearchTerm(const QString searchTerm) diff -Nru lxqt-runner-0.14.1/providers.h lxqt-runner-0.16.0/providers.h --- lxqt-runner-0.14.1/providers.h 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/providers.h 2020-10-31 09:00:25.000000000 +0000 @@ -319,7 +319,7 @@ bool setData(QMap & data); bool run() const; - bool compare(const QRegExp ®Exp) const {return true;} // We leave the decision to the external process + bool compare(const QRegExp & /*regExp*/) const {return true;} // We leave the decision to the external process unsigned int rank(const QString &pattern) const; QString mCommand; diff -Nru lxqt-runner-0.14.1/README.md lxqt-runner-0.16.0/README.md --- lxqt-runner-0.14.1/README.md 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/README.md 2020-10-31 09:00:25.000000000 +0000 @@ -33,10 +33,13 @@ To launch an application corresponding strings need to be filed in the form, next a selection can be made from a list presenting matches. Items to shut down or restart the system and so on are provided by the menu featuring the configuration dialogue as well. +### Translation +Translations can be done in [LXQt-Weblate](https://translate.lxqt-project.org/projects/lxqt-desktop/lxqt-runner/) -### Translation (Weblate) - - -Translation status + +Translation status + + + diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_arn.ts lxqt-runner-0.16.0/translations/lxqt-runner_arn.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_arn.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_arn.ts 2020-10-31 09:00:25.000000000 +0000 @@ -0,0 +1,118 @@ + + + + + ConfigureDialog + + + Runner Settings + + + + + Appearance + + + + + Positioning: + + + + + Show on: + + + + + Show history first + + + + + Store/show history + + + + + <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. + + + + + Show list with: + + + + + item(s) + + + + + 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 -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ar.ts lxqt-runner-0.16.0/translations/lxqt-runner_ar.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ar.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ar.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ وسط الشاشة - + Focused screen الشاشة الحالية - + Always on screen %1 الشاشة %1 دائما - + Reset صفّر @@ -87,17 +87,17 @@ مُطلق التطبيقات - + Configure اضبط - + Clear History امسح التأريخ - + Show/hide runner dialog اعرض/أخفِ حواريّ المُطلق @@ -110,7 +110,7 @@ التأريخ - + Mathematics الرياضيات diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ast.ts lxqt-runner-0.16.0/translations/lxqt-runner_ast.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ast.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ast.ts 2020-10-31 09:00:25.000000000 +0000 @@ -0,0 +1,118 @@ + + + + + ConfigureDialog + + + Runner Settings + + + + + Appearance + + + + + Positioning: + + + + + Show on: + + + + + Show history first + + + + + Store/show history + + + + + <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. + + + + + Show list with: + + + + + item(s) + + + + + 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 -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ca.ts lxqt-runner-0.16.0/translations/lxqt-runner_ca.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ca.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ca.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Centre de la pantalla - + Focused screen Pantalla amb focus - + Always on screen %1 Sempre a la pantalla %1 - + Reset Restableix @@ -87,17 +87,17 @@ Llançador d'aplicacions - + Configure Configura - + Clear History Neteja l'historial - + Show/hide runner dialog Mostra o oculta el diàleg de l'executor @@ -110,7 +110,7 @@ Historial - + Mathematics Matemàtiques diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_cs.ts lxqt-runner-0.16.0/translations/lxqt-runner_cs.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_cs.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_cs.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Střed obrazovky - + Focused screen Zaměřená obrazovka - + Always on screen %1 Vždy na obrazovce %1 - + Reset Nastavit znovu @@ -87,17 +87,17 @@ Spouštěč aplikací - + Configure Nastavit - + Clear History Vyprázdnit historii - + Show/hide runner dialog Zobrazit/skrýt dialog spouštěče programů @@ -110,7 +110,7 @@ Historie - + Mathematics Matematika diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_cy.ts lxqt-runner-0.16.0/translations/lxqt-runner_cy.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_cy.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_cy.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ - + Mathematics diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_da.ts lxqt-runner-0.16.0/translations/lxqt-runner_da.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_da.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_da.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ I midten af skærmen - + Focused screen Skærm som har fokus - + Always on screen %1 Altid på skærm %1 - + Reset Nulstil @@ -87,17 +87,17 @@ Programstarter - + Configure Konfigurér - + Clear History Ryd historik - + Show/hide runner dialog Vis/skjul runner-dialog @@ -110,7 +110,7 @@ Historik - + Mathematics Matematik diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_de.ts lxqt-runner-0.16.0/translations/lxqt-runner_de.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_de.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_de.ts 2020-10-31 09:00:25.000000000 +0000 @@ -36,7 +36,7 @@ <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. - <b>Hinweis</b>: Die Größe von Bedienelementen auf höchster Ebene ist auf 2/3 der Höhe und Breite des Schreibtisches beschränkt. + <b>Hinweis</b>: Die Größe von Bedienelementen auf höchster Ebene ist auf 2/3 der Höhe und Breite der Arbeitsfläche beschränkt. @@ -64,17 +64,17 @@ Bildschirmmitte - + Focused screen Fokussierter Bildschirm - + Always on screen %1 Immer auf Bildschirm %1 - + Reset Zurücksetzen @@ -87,17 +87,17 @@ Anwendungsstarter - + Configure Konfigurieren - + Clear History Verlauf löschen - + Show/hide runner dialog Zeige/verberge Runnerdialog @@ -110,7 +110,7 @@ Verlauf - + Mathematics Mathematik diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_el.ts lxqt-runner-0.16.0/translations/lxqt-runner_el.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_el.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_el.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Κέντρο της οθόνης - + Focused screen Ενεργή οθόνη - + Always on screen %1 Πάντα στην οθόνη %1 - + Reset Επαναφορά @@ -87,17 +87,17 @@ Εκτελεστής εφαρμογών - + Configure Διαμόρφωση - + Clear History Εκκαθάριση του ιστορικού - + Show/hide runner dialog Εμφάνιση/απόκρυψη του διαλόγου του εκτελεστή @@ -110,7 +110,7 @@ Ιστορικό - + Mathematics Μαθηματικά diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_eo.ts lxqt-runner-0.16.0/translations/lxqt-runner_eo.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_eo.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_eo.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ Lanĉilo de aplikaĵoj - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ Historio - + Mathematics Matematiko diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_es.ts lxqt-runner-0.16.0/translations/lxqt-runner_es.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_es.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_es.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Centro de la pantalla - + Focused screen Pantalla activa - + Always on screen %1 Siempre en la pantalla %1 - + Reset Reiniciar @@ -87,17 +87,17 @@ Lanzador de aplicaciones - + Configure Configurar - + Clear History Borrar el historial - + Show/hide runner dialog Mostrar/ocultar el diálogo del lanzador de aplicaciones @@ -110,7 +110,7 @@ Historial - + Mathematics Matemáticas diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_es_VE.ts lxqt-runner-0.16.0/translations/lxqt-runner_es_VE.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_es_VE.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_es_VE.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ Lanzador de palicaciones - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ Historial - + Mathematics Matematicas diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_eu.ts lxqt-runner-0.16.0/translations/lxqt-runner_eu.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_eu.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_eu.ts 2020-10-31 09:00:25.000000000 +0000 @@ -26,22 +26,22 @@ Show history first - + Erakutsi lehenengo historia Store/show history - + Gorde/ikusi historia <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. - + <b>Oharra</b>: Goi mailako widgeten tamaina mahaigainaren altuera eta zabaleraren 2/3era mugatua dago. Show list with: - + Erakutsi zerrenda honekin: @@ -56,27 +56,27 @@ Top edge of the screen - + Pantailaren goiko ertza Center of the screen - + Pantailaren erdigunea - + Focused screen - + Enfokatutako pantaila - + Always on screen %1 - + Reset - + Berrezarri @@ -84,20 +84,20 @@ Application launcher - Aplikazio-abiarazlea + Aplikazio-abiarazlea - + Configure - + Konfiguratu - + Clear History - + Garbitu historia - + Show/hide runner dialog @@ -110,7 +110,7 @@ Historia - + Mathematics Matematikak diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_fi.ts lxqt-runner-0.16.0/translations/lxqt-runner_fi.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_fi.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_fi.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Keskellä - + Focused screen Aktiivisella näytöllä - + Always on screen %1 Aina näytöllä %1 - + Reset Palauta @@ -87,17 +87,17 @@ Sovelluskäynnistin - + Configure Asetukset - + Clear History Tyhjennä historia - + Show/hide runner dialog Näytä/piilota käynnistin @@ -110,7 +110,7 @@ Historia - + Mathematics Matematiikka diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_fr.ts lxqt-runner-0.16.0/translations/lxqt-runner_fr.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_fr.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_fr.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Centre de l'écran - + Focused screen Écran ayant le focus - + Always on screen %1 Toujours sur l'écran %1 - + Reset Réinitialiser @@ -87,17 +87,17 @@ Lanceur d'application - + Configure Configurer - + Clear History Effacer l'historique - + Show/hide runner dialog Afficher/cacher le dialogue du lanceur @@ -110,7 +110,7 @@ Historique - + Mathematics Mathématiques diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_gl.ts lxqt-runner-0.16.0/translations/lxqt-runner_gl.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_gl.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_gl.ts 2020-10-31 09:00:25.000000000 +0000 @@ -6,7 +6,7 @@ Runner Settings - Axustes do iniciador de aplicativos + Axustes do lanzador de aplicacións @@ -64,17 +64,17 @@ Centro da pantalla - + Focused screen Pantalla en foco - + Always on screen %1 Sempre na pantalla %1 - + Reset Restabelecer @@ -84,22 +84,22 @@ Application launcher - Iniciador de aplicativos + Lanzador de aplicacións - + Configure Configurar - + Clear History Limpar o historial - + Show/hide runner dialog - Amosar/agachar o diálogo do iniciador de aplicativos + Amosar/agochar o diálogo do lanzador de aplicacións @@ -110,7 +110,7 @@ Historial - + Mathematics Matemáticas diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_he.ts lxqt-runner-0.16.0/translations/lxqt-runner_he.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_he.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_he.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ מרכז המסך - + Focused screen מסך במיקוד - + Always on screen %1 תמיד במסך %1 - + Reset איפוס @@ -87,17 +87,17 @@ משגר יישומים - + Configure הגדרה - + Clear History מחיקת היסטוריה - + Show/hide runner dialog הצגת/הסתרת תיבת מפעיל @@ -110,7 +110,7 @@ היסטוריה - + Mathematics מתמטיקה diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_hr.ts lxqt-runner-0.16.0/translations/lxqt-runner_hr.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_hr.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_hr.ts 2020-10-31 09:00:25.000000000 +0000 @@ -0,0 +1,118 @@ + + + + + ConfigureDialog + + + Runner Settings + Pokretač – Postavke + + + + Appearance + Izgled + + + + Positioning: + Pozicioniranje: + + + + Show on: + Prikaži na: + + + + Show history first + Najprije prikaži povijest + + + + Store/show history + Spremi/prikaži povijest + + + + <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. + <b>Napomena</b>: Veličina programčića najviše razine ograničena je na 2/3 visine i širine radne površine. + + + + Show list with: + Prikaži popis s: + + + + item(s) + stavke(i) + + + + Shortcut: + Prečac: + + + + Top edge of the screen + Gornjem rubu ekrana + + + + Center of the screen + Sredini ekrana + + + + Focused screen + Fokusiranom ekranu + + + + Always on screen %1 + Uvijek na ekranu %1 + + + + Reset + Resetiraj + + + + Dialog + + + Application launcher + Pokretač programa + + + + Configure + Konfiguriraj + + + + Clear History + Izbriši povijest + + + + Show/hide runner dialog + Prikaži/sakrij dijalog pokretača + + + + QObject + + + History + Povijest + + + + Mathematics + Računanja + + + diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_hu.ts lxqt-runner-0.16.0/translations/lxqt-runner_hu.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_hu.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_hu.ts 2020-10-31 09:00:25.000000000 +0000 @@ -6,7 +6,7 @@ Runner Settings - Futtató beállítás + Futtató beállítások @@ -31,7 +31,7 @@ Store/show history - Előzmények mentése/mutatása + Előzmények mentése/megjelenítése @@ -64,17 +64,17 @@ Képernyő közepén - + Focused screen - Fókuszált képernyőn + Mindig a használt képernyőn - + Always on screen %1 Mindig a %1 képernyőn - + Reset Alapállapot @@ -84,20 +84,20 @@ Application launcher - Alkalmazás futtató + Alkalmazás indító - + Configure Beállítás - + Clear History Előzmények törlése - + Show/hide runner dialog Futtatóablak ki/be @@ -110,7 +110,7 @@ Előzmények - + Mathematics Matematika diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ia.ts lxqt-runner-0.16.0/translations/lxqt-runner_ia.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ia.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ia.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ - + Mathematics diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_id.ts lxqt-runner-0.16.0/translations/lxqt-runner_id.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_id.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_id.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Tengah layar - + Focused screen Layar terfokus - + Always on screen %1 Selalu di layar %1 - + Reset Atur ulang @@ -87,17 +87,17 @@ Peluncur aplikasi - + Configure Konfigurasi - + Clear History Bersihkan Riwayat - + Show/hide runner dialog Tampilkan/sembunyikan dialog runner @@ -110,7 +110,7 @@ Riwayat - + Mathematics Matematika diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_it.ts lxqt-runner-0.16.0/translations/lxqt-runner_it.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_it.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_it.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Centro dello schermo - + Focused screen Schermo attivo - + Always on screen %1 Sempre sullo schermo %1 - + Reset Ripristina @@ -87,17 +87,17 @@ Lanciatore di applicazioni - + Configure Configura - + Clear History Pulisci cronologia - + Show/hide runner dialog Mostra/nascondi la finestra di runner @@ -110,7 +110,7 @@ Cronologia - + Mathematics Matematica diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ja.ts lxqt-runner-0.16.0/translations/lxqt-runner_ja.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ja.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ja.ts 2020-10-31 09:00:25.000000000 +0000 @@ -6,7 +6,7 @@ Runner Settings - Runnerの設定 + Runner の設定 @@ -31,17 +31,17 @@ Store/show history - 履歴の保管/表示 + 履歴の保管/表示をする <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. - <b>注意</b>: ウィジェットの大きさはデスクトップの高さ及び幅の2/3に制限されます。 + <b>注意</b>: ウィジェットのサイズはデスクトップの高さ及び幅の 2/3 に制限されます。 Show list with: - リストを表示: + リストの表示: @@ -56,25 +56,25 @@ Top edge of the screen - スクリーンの端 + 画面の上端 Center of the screen - スクリーンの中央 + 画面の中央 - + Focused screen - フォーカスされたスクリーン + フォーカスされた画面 - + Always on screen %1 - 常にスクリーン %1 に表示 + 常に画面 %1 に表示 - + Reset リセット @@ -87,19 +87,19 @@ アプリケーションランチャ - + Configure 設定 - + Clear History - 履歴を消去 + 履歴の消去 - + Show/hide runner dialog - runnnerのダイアログを表示する/隠す + Runnner のダイアログを表示する/隠す @@ -110,7 +110,7 @@ 履歴 - + Mathematics 計算 diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ko.ts lxqt-runner-0.16.0/translations/lxqt-runner_ko.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ko.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ko.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ 화면 중앙 - + Focused screen 포커스 된 화면 - + Always on screen %1 항상 화면 %1에 - + Reset 초기화 @@ -87,17 +87,17 @@ 애플리케이션 런처 - + Configure 설정 - + Clear History 사용 기록 지우기 - + Show/hide runner dialog 러너 대화 상장 보이기/숨기기 @@ -110,7 +110,7 @@ 기록 - + Mathematics 수학 diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_lt.ts lxqt-runner-0.16.0/translations/lxqt-runner_lt.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_lt.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_lt.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Ekrano centre - + Focused screen Fokusuotame ekrane - + Always on screen %1 Visada ekrane %1 - + Reset Atstatyti @@ -87,17 +87,17 @@ Programų leistukas - + Configure Konfigūruoti - + Clear History Išvalyti istoriją - + Show/hide runner dialog Rodyti/slėpti paleidiklio dialogą @@ -110,7 +110,7 @@ Istorija - + Mathematics Matematika diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_nb_NO.ts lxqt-runner-0.16.0/translations/lxqt-runner_nb_NO.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_nb_NO.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_nb_NO.ts 2020-10-31 09:00:25.000000000 +0000 @@ -6,7 +6,7 @@ Runner Settings - Hurtigkjørerinnstillinger + Innstillinger for programstarter @@ -16,7 +16,7 @@ Positioning: - Posisjon: + Plassering: @@ -26,12 +26,12 @@ Show history first - Vis tidligere kjørte + Vis historikk først Store/show history - Lagre og vis tidligere kjørte + Lagre/vis historikk @@ -46,17 +46,17 @@ item(s) - ting + element(er) Shortcut: - Snarevei: + Tastatursnarevei: Top edge of the screen - Langs toppen av skjermen + Øverste kant på skjermen @@ -64,17 +64,17 @@ Midt på skjermen - + Focused screen - Fokusert skjerm + Skjerm som har fokus - + Always on screen %1 Alltid på skjerm %1 - + Reset Nullstill @@ -84,22 +84,22 @@ Application launcher - Programkjører + Programstarter - + Configure Konfigurer - + Clear History - Slett tidligere kjørte + Slett historikk - + Show/hide runner dialog - Vis/skjul hurtigkjører + Vis/skjul programstarter @@ -107,10 +107,10 @@ History - Tidligere kjørte + Historikk - + Mathematics Mattematikk diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_nl.ts lxqt-runner-0.16.0/translations/lxqt-runner_nl.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_nl.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_nl.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Midden van beeldscherm - + Focused screen Scherpgesteld scherm - + Always on screen %1 Altijd op scherm %1 - + Reset Terugzetten @@ -87,17 +87,17 @@ Toepassingenstarter - + Configure Instellen - + Clear History Geschiedenis wissen - + Show/hide runner dialog Toon/verberg de Uitvoerder-dialoog @@ -110,7 +110,7 @@ Geschiedenis - + Mathematics Wiskunde diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_pl.ts lxqt-runner-0.16.0/translations/lxqt-runner_pl.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_pl.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_pl.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Środek ekranu - + Focused screen Używany ekran - + Always on screen %1 Zawsze na ekranie %1 - + Reset Przywróć @@ -87,17 +87,17 @@ Wyzwalacz programu - + Configure Konfiguruj - + Clear History Wyczyść historię - + Show/hide runner dialog Pokaż/ukryj okno programu @@ -110,7 +110,7 @@ Historia - + Mathematics Matematyka diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_pt_BR.ts lxqt-runner-0.16.0/translations/lxqt-runner_pt_BR.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_pt_BR.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_pt_BR.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Centro da tela - + Focused screen Tela focada - + Always on screen %1 Sempre na tela %1 - + Reset Reiniciar @@ -87,17 +87,17 @@ Lançador de aplicativo - + Configure Configurar - + Clear History Limpar histórico - + Show/hide runner dialog Exibir/ocultar diálogo do Runner @@ -110,7 +110,7 @@ Histórico - + Mathematics Matemática diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_pt.ts lxqt-runner-0.16.0/translations/lxqt-runner_pt.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_pt.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_pt.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Centro do ecrã - + Focused screen Ecrã em foco - + Always on screen %1 Sempre no ecrã %1 - + Reset Repor @@ -87,17 +87,17 @@ Lançador de aplicações - + Configure Configurar - + Clear History Limpar histórico - + Show/hide runner dialog Mostrar/ocultar caixa de diálogo @@ -110,7 +110,7 @@ Histórico - + Mathematics Matemática diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ro_RO.ts lxqt-runner-0.16.0/translations/lxqt-runner_ro_RO.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ro_RO.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ro_RO.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Centrul ecranului - + Focused screen Ecran focalizat - + Always on screen %1 Întotdeauna pe ecran %1 - + Reset Resetează @@ -84,20 +84,20 @@ Application launcher - Lansator de aplicații + Lansator de aplicații - + Configure Configurează - + Clear History Șterge istoricul - + Show/hide runner dialog Afișează/ascunde dialogul lansatorului @@ -110,7 +110,7 @@ Istoric - + Mathematics Matematică diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ru_RU.ts lxqt-runner-0.16.0/translations/lxqt-runner_ru_RU.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ru_RU.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ru_RU.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,118 +0,0 @@ - - - - - ConfigureDialog - - - Runner Settings - Настройки ускорителя - - - - Appearance - Внешний вид - - - - Positioning: - Позиция: - - - - Show on: - Показывать на: - - - - Show history first - Сначала показывать историю - - - - Store/show history - Хранить/показывать историю - - - - <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. - - - - - Show list with: - Показывать список с: - - - - item(s) - - - - - 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 - Математика - - - diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_ru.ts lxqt-runner-0.16.0/translations/lxqt-runner_ru.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_ru.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_ru.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ В центре экрана - + Focused screen Активном экране - + Always on screen %1 Всегда на %1 экране - + Reset Сброс @@ -87,17 +87,17 @@ Ускоритель запуска программ - + Configure Настроить - + Clear History Очистить историю - + Show/hide runner dialog Показать/скрыть окно ускорителя @@ -110,7 +110,7 @@ Из истории - + Mathematics Математика diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_sk_SK.ts lxqt-runner-0.16.0/translations/lxqt-runner_sk_SK.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_sk_SK.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_sk_SK.ts 2020-10-31 09:00:25.000000000 +0000 @@ -46,7 +46,7 @@ item(s) - + položky @@ -64,17 +64,17 @@ Stred obrazovky - + Focused screen Aktuálna obrazovka - + Always on screen %1 Vždy na obrazovke %1 - + Reset Zrušiť zmeny @@ -87,17 +87,17 @@ Spúšťač aplikácií - + Configure Nastaviť - + Clear History Vymazať históriu - + Show/hide runner dialog Zobraziť/skryť okno Runneru @@ -110,7 +110,7 @@ História - + Mathematics Matematika diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_sk.ts lxqt-runner-0.16.0/translations/lxqt-runner_sk.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_sk.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_sk.ts 2020-10-31 09:00:25.000000000 +0000 @@ -0,0 +1,118 @@ + + + + + ConfigureDialog + + + Runner Settings + Nastavenia Runnera + + + + Appearance + Vzhľad + + + + Positioning: + Umiestnenie: + + + + Show on: + Zobrazovať na: + + + + Show history first + Záznamy z histórie zobrazovať ako prvé + + + + Store/show history + Ukladať/zobrazovať históriu + + + + <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. + <b>Pozor</b>: Veľkosť widgetov najvyššej úrovne je obmedzená na 2/3 výšky a šírky plochy. + + + + Show list with: + Zobraziť zoznam s: + + + + item(s) + položkami + + + + Shortcut: + Klávesová skratka: + + + + Top edge of the screen + Horný okraj obrazovky + + + + Center of the screen + Stred obrazovky + + + + Focused screen + Aktuálna obrazovka + + + + Always on screen %1 + Vždy na obrazovke %1 + + + + Reset + Vrátiť zmeny + + + + Dialog + + + Application launcher + Spúšťač aplikácií + + + + Configure + Nastavenia + + + + Clear History + Vymazať históriu + + + + Show/hide runner dialog + Zobraziť/skryť Runner + + + + QObject + + + History + História + + + + Mathematics + Matematika + + + diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_sl.ts lxqt-runner-0.16.0/translations/lxqt-runner_sl.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_sl.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_sl.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Sredina zaslona - + Focused screen Aktivnem zaslonu - + Always on screen %1 Zmeraj na zaslonu %1 - + Reset Ponastavi @@ -87,17 +87,17 @@ Zaganjalnik programov - + Configure Nastavi - + Clear History Počisti zgodovino - + Show/hide runner dialog Pokaži/skrij zaganjalnik programov @@ -110,7 +110,7 @@ Zgodovina - + Mathematics Matematika diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_sr_BA.ts lxqt-runner-0.16.0/translations/lxqt-runner_sr_BA.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_sr_BA.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_sr_BA.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ Покретач програма - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ Историјат - + Mathematics Математика diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_sr@latin.ts lxqt-runner-0.16.0/translations/lxqt-runner_sr@latin.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_sr@latin.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_sr@latin.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ - + Mathematics diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_sr_RS.ts lxqt-runner-0.16.0/translations/lxqt-runner_sr_RS.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_sr_RS.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_sr_RS.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ Покретач програма - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ Историјат - + Mathematics Математика diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_th_TH.ts lxqt-runner-0.16.0/translations/lxqt-runner_th_TH.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_th_TH.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_th_TH.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ ปุ่มเรียกใช้งานโปรแกรม - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ ประวัติ - + Mathematics การคำนวณเลข diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_tr.ts lxqt-runner-0.16.0/translations/lxqt-runner_tr.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_tr.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_tr.ts 2020-10-31 09:00:25.000000000 +0000 @@ -36,7 +36,7 @@ <b>Note</b>: The size of top-level widgets are constrained to 2/3 of the desktop's height and width. - <b>Not</b>: Üst seviye gereçlerin boyutu masaüstü yükseklik ve genişliğinin 2/3 ü ile sınırlıdır. + <b>Not</b>: Üst seviye gereçlerin boyutu masaüstü yükseklik ve genişliğinin 2/3 ü ile sınırlıdır. @@ -64,17 +64,17 @@ Ekranın merkezi - + Focused screen Odaklanmış ekran - + Always on screen %1 Her zaman %1 ekranında - + Reset Sıfırla @@ -87,17 +87,17 @@ Uygulama başlatıcı - + Configure Yapılandır - + Clear History Geçmişi Temizle - + Show/hide runner dialog Çalıştırıcı penceresini göster/gizle @@ -110,7 +110,7 @@ Geçmiş - + Mathematics İşlemler diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner.ts lxqt-runner-0.16.0/translations/lxqt-runner.ts --- lxqt-runner-0.14.1/translations/lxqt-runner.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ - + Focused screen - + Always on screen %1 - + Reset @@ -87,17 +87,17 @@ - + Configure - + Clear History - + Show/hide runner dialog @@ -110,7 +110,7 @@ - + Mathematics diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_uk.ts lxqt-runner-0.16.0/translations/lxqt-runner_uk.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_uk.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_uk.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ Центр екрану - + Focused screen Фокусований екран - + Always on screen %1 Завжди на екрані %1 - + Reset Скинути @@ -87,17 +87,17 @@ Запускач програм - + Configure Налаштувати - + Clear History Очистити історію - + Show/hide runner dialog Показати/сховати діалог запускача @@ -110,7 +110,7 @@ Історія - + Mathematics Математика diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_zh_CN.ts lxqt-runner-0.16.0/translations/lxqt-runner_zh_CN.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_zh_CN.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_zh_CN.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ 屏幕中央 - + Focused screen 当前屏幕 - + Always on screen %1 总是显示在屏幕 %1 上 - + Reset 重置 @@ -87,17 +87,17 @@ 应用程序启动器 - + Configure 配置 - + Clear History 清除历史 - + Show/hide runner dialog 显示/隐藏对话框 @@ -110,7 +110,7 @@ 历史 - + Mathematics 数学 diff -Nru lxqt-runner-0.14.1/translations/lxqt-runner_zh_TW.ts lxqt-runner-0.16.0/translations/lxqt-runner_zh_TW.ts --- lxqt-runner-0.14.1/translations/lxqt-runner_zh_TW.ts 2019-02-24 22:56:26.000000000 +0000 +++ lxqt-runner-0.16.0/translations/lxqt-runner_zh_TW.ts 2020-10-31 09:00:25.000000000 +0000 @@ -64,17 +64,17 @@ 螢幕中央 - + Focused screen 使用中的螢幕 - + Always on screen %1 總是顯示在螢幕%1 - + Reset 重置 @@ -87,17 +87,17 @@ 應用程式啟動器 - + Configure 配置 - + Clear History 清除歷史紀錄 - + Show/hide runner dialog 顯示/隱藏啟動器對話框 @@ -110,7 +110,7 @@ 歷史記錄 - + Mathematics 數學