diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..513eaeb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build +*.kdev4 diff --git a/COPYING b/LICENSE similarity index 96% rename from COPYING rename to LICENSE index a8dd823..20fb9c7 100644 --- a/COPYING +++ b/LICENSE @@ -1,9 +1,8 @@ - GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -23,8 +22,7 @@ specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations -below. +strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that @@ -89,9 +87,9 @@ libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it -becomes a de-facto standard. To achieve this, non-free programs must -be allowed to use the library. A more frequent case is that a free +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. @@ -138,8 +136,8 @@ included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control -compilation and installation of the library. +interface definition files, plus the scripts used to control compilation +and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of @@ -305,10 +303,10 @@ of these things: the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. - c) Accompany the work with a written offer, valid for at least - three years, to give the same user the materials specified in - Subsection 6a, above, for a charge no more than the cost of - performing this distribution. + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above @@ -386,10 +384,9 @@ all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply, and the section as a whole is intended to apply in other -circumstances. +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any @@ -407,11 +404,11 @@ be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License -may add an explicit geographical distribution limitation excluding those -countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. diff --git a/config/CMakeLists.txt b/config/CMakeLists.txt index 0485b50..3002bc0 100644 --- a/config/CMakeLists.txt +++ b/config/CMakeLists.txt @@ -19,7 +19,6 @@ set(${PROJECT_NAME}_SOURCES shortcut_selector.cpp ${${PROJECT_NAME}_PATH_TO_DAEMON}/meta_types.cpp edit_action_dialog.cpp - shortcut_delegate.cpp ) set(${PROJECT_NAME}_FORMS diff --git a/config/default_model.cpp b/config/default_model.cpp index 430adae..092b9a8 100644 --- a/config/default_model.cpp +++ b/config/default_model.cpp @@ -91,12 +91,6 @@ QVariant DefaultModel::data(const QModelIndex &index, int role) const break; case Qt::EditRole: - if ((index.row() >= 0) && (index.row() < rowCount()) && (index.column() >= 0) && (index.column() < columnCount())) - switch (index.column()) - { - case 1: - return mContent[mContent.keys()[index.row()]].shortcut; - } break; case Qt::FontRole: @@ -179,25 +173,11 @@ Qt::ItemFlags DefaultModel::flags(const QModelIndex &index) const { result |= Qt::ItemIsUserCheckable; } - if (index.column() == 1) - { - result |= Qt::ItemIsEditable; - } return result; } bool DefaultModel::setData(const QModelIndex &index, const QVariant &value, int role) { - switch (role) - { - case Qt::EditRole: - if ((index.row() >= 0) && (index.row() < rowCount()) && index.column() == 1) - { - mActions->changeShortcut(mContent.keys()[index.row()], value.toString()); - return true; - } - break; - } return false; } diff --git a/config/lxqt-config-globalkeyshortcuts.desktop.in b/config/lxqt-config-globalkeyshortcuts.desktop.in index 12d7669..23195da 100644 --- a/config/lxqt-config-globalkeyshortcuts.desktop.in +++ b/config/lxqt-config-globalkeyshortcuts.desktop.in @@ -6,6 +6,6 @@ Comment=Configure shortcut keys in LXQt Exec=lxqt-config-globalkeyshortcuts Icon=preferences-desktop-keyboard Categories=Settings;DesktopSettings;Qt;LXQt; -OnlyShowIn=LXQt;LXDE; +OnlyShowIn=LXQt; #TRANSLATIONS_DIR=translations diff --git a/config/main.cpp b/config/main.cpp index c2db8bd..0bde3d1 100644 --- a/config/main.cpp +++ b/config/main.cpp @@ -31,7 +31,7 @@ int main(int argc, char *argv[]) { - LxQt::SingleApplication a(argc, argv); + LXQt::SingleApplication a(argc, argv); MainWindow w; a.setActivationWindow(&w); diff --git a/config/main_window.cpp b/config/main_window.cpp index 1319e1a..1297476 100644 --- a/config/main_window.cpp +++ b/config/main_window.cpp @@ -29,7 +29,6 @@ #include "actions.h" #include "default_model.h" #include "edit_action_dialog.h" -#include "shortcut_delegate.h" #include #include @@ -66,8 +65,6 @@ MainWindow::MainWindow(QWidget *parent) mSelectionModel = new QItemSelectionModel(actions_TV->model()); actions_TV->setSelectionModel(mSelectionModel); - actions_TV->setItemDelegateForColumn(1, new ShortcutDelegate(mActions, this)); - connect(mSelectionModel, SIGNAL(selectionChanged(QItemSelection, QItemSelection)), SLOT(selectionChanged(QItemSelection, QItemSelection))); connect(mActions, SIGNAL(daemonDisappeared()), SLOT(daemonDisappeared())); @@ -173,9 +170,6 @@ void MainWindow::on_actions_TV_doubleClicked(const QModelIndex &index) } break; - case 1: - break; - default: editAction(index); } @@ -186,17 +180,11 @@ void MainWindow::editAction(const QModelIndex &index) qulonglong id = 0; if (index.isValid()) - { id = mDefaultModel->id(mSortFilterProxyModel->mapToSource(index)); - } if (!mEditActionDialog) - { mEditActionDialog = new EditActionDialog(mActions, this); - } if (mEditActionDialog->load(id)) - { mEditActionDialog->exec(); - } } diff --git a/config/shortcut_delegate.cpp b/config/shortcut_delegate.cpp deleted file mode 100644 index 5cbc5ec..0000000 --- a/config/shortcut_delegate.cpp +++ /dev/null @@ -1,72 +0,0 @@ -/* BEGIN_COMMON_COPYRIGHT_HEADER - * (c)LGPL2+ - * - * LXDE-Qt - a lightweight, Qt based, desktop toolset - * http://razor-qt.org - * - * Copyright: 2013 Razor team - * Authors: - * Kuzma Shapran - * - * This program or library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA - * - * END_COMMON_COPYRIGHT_HEADER */ - -#include "shortcut_delegate.h" -#include "shortcut_selector.h" -#include "actions.h" - -#include - - -ShortcutDelegate::ShortcutDelegate(Actions *actions, QObject *parent) - : QItemDelegate(parent) - , mActions(actions) -{ -} - -QWidget *ShortcutDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &/* option */, const QModelIndex &/* index */) const -{ - ShortcutSelector *button = new ShortcutSelector(mActions, parent); - button->autoApplyShortcut(); - QTimer::singleShot(0, button, SLOT(click())); - return button; -} - -void ShortcutDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const -{ - ShortcutSelector *button = static_cast(editor); - if (button->isGrabbing()) - button->cancelNow(); - model->setData(index, button->text(), Qt::EditRole); -} - -void ShortcutDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &/* index */) const -{ - editor->setGeometry(option.rect); -} - -void ShortcutDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const -{ - static_cast(editor)->setText(index.model()->data(index, Qt::EditRole).toString()); -} - -QSize ShortcutDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const -{ - QSize sizeHint = QItemDelegate::sizeHint(option , index); - sizeHint.setHeight(sizeHint.height() + 15); - return sizeHint; -} diff --git a/config/shortcut_delegate.h b/config/shortcut_delegate.h deleted file mode 100644 index d5768aa..0000000 --- a/config/shortcut_delegate.h +++ /dev/null @@ -1,57 +0,0 @@ -/* BEGIN_COMMON_COPYRIGHT_HEADER - * (c)LGPL2+ - * - * LXDE-Qt - a lightweight, Qt based, desktop toolset - * http://razor-qt.org - * - * Copyright: 2013 Razor team - * Authors: - * Kuzma Shapran - * - * This program or library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA - * - * END_COMMON_COPYRIGHT_HEADER */ - -#ifndef GLOBAL_ACTION_CONFIG__SHORTCUT_DELEGATE__INCLUDED -#define GLOBAL_ACTION_CONFIG__SHORTCUT_DELEGATE__INCLUDED - - -#include - - -class Actions; - -class ShortcutDelegate : public QItemDelegate -{ - Q_OBJECT - -public: - explicit ShortcutDelegate(Actions *actions, QObject *parent = 0); - - QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const; - - void setEditorData(QWidget *editor, const QModelIndex &index) const; - void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const; - - QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const; - - void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const; - -private: - Actions *mActions; -}; - -#endif // GLOBAL_ACTION_CONFIG__SHORTCUT_DELEGATE__INCLUDED diff --git a/config/translations/lxqt-config-globalkeyshortcuts.ts b/config/translations/lxqt-config-globalkeyshortcuts.ts index 5546633..7d46c80 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts.ts @@ -1,92 +1,167 @@ - + - CommandFinder + DefaultModel - ... + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut - Find a command + + Description + + + + + Type + + + + + Info - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor + + Edit Action - Description + + &Shortcut: - Shortcut + + &Description: - Command + + &Enabled - Add New + + &Command - Remove + + &DBus message - Add Group + + Type: - Reset + + Co&mmand: - Close + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: - ShortcutEditor + MainWindow - None + + Global Actions Manager - Add Shortcut + + Add ... + Remove - New Group + + Modify ... - Reset Changes + + Swap - Question + + Multiple actions behaviour: - Delete group: %1? (everything inside will be removed altogether) + + First - Delete %1? + + Last - Binding for %1 already exists. Replace old one? + + None + + + + + All + + + + + Close diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ar.ts b/config/translations/lxqt-config-globalkeyshortcuts_ar.ts index a83dcd2..7f21fe7 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ar.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_ar.ts @@ -1,75 +1,194 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + الوصف + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - الوصف + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - إزالة + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - إغلاق + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + إزالة + + + + Modify ... + + + + + Swap + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + None - ﻻشيء + ﻻشيء - Add Shortcut - + + All + + + + + Close + إغلاق + + + + ShortcutConfigWindow + + Description + الوصف Remove - إزالة + إزالة - New Group - + Close + إغلاق + + + ShortcutEditor - Reset Changes - + None + ﻻشيء + + + Remove + إزالة - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_cs.desktop b/config/translations/lxqt-config-globalkeyshortcuts_cs.desktop index 7681216..561dd90 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_cs.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_cs.desktop @@ -1,4 +1,4 @@ # Translations Name[cs]=Nastavení klávesových zkratek -Comment[cs]=Nastavit celkové klávesové zkratky pro prostředí LxQt +Comment[cs]=Nastavit celkové klávesové zkratky pro prostředí LXQt GenericName[cs]=Nastavení celkových klávesových zkratek diff --git a/config/translations/lxqt-config-globalkeyshortcuts_cs.ts b/config/translations/lxqt-config-globalkeyshortcuts_cs.ts index f7e4397..fbb8a2e 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_cs.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_cs.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Najít příkaz + Najít příkaz + + + + DefaultModel + + + Command + Příkaz + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Zkratka + + + + Description + Popis + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Odstranit + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Žádná + + + + All + + + + + Close + Zavřít ShortcutConfigWindow - LxQt Shortcut Editor - Editor zkratek + LXQt Shortcut Editor + Editor zkratek Description - Popis + Popis Shortcut - Zkratka + Zkratka Command - Příkaz + Příkaz Add New - Přidat novou + Přidat novou Remove - Odstranit + Odstranit Add Group - Přidat skupinu + Přidat skupinu Reset - Vynulovat + Vynulovat Close - Zavřít + Zavřít ShortcutEditor None - Žádná + Žádná Add Shortcut - Přidat zkratku + Přidat zkratku Remove - Odstranit + Odstranit New Group - Nová skupina + Nová skupina Reset Changes - Vynulovat změny + Vynulovat změny - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.desktop b/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.desktop index f219214..d5c69d5 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.desktop @@ -1,4 +1,4 @@ # Translations Name[cs_CZ]=Nastavení klávesových zkratek -Comment[cs_CZ]=Nastavit celkové klávesové zkratky pro prostředí LxQt +Comment[cs_CZ]=Nastavit celkové klávesové zkratky pro prostředí LXQt GenericName[cs_CZ]=Nastavení celkových klávesových zkratek diff --git a/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.ts b/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.ts index 95b0518..d374897 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_cs_CZ.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Najít příkaz + Najít příkaz + + + + DefaultModel + + + Command + Příkaz + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Zkratka + + + + Description + Popis + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Odstranit + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Žádná + + + + All + + + + + Close + Zavřít ShortcutConfigWindow - LxQt Shortcut Editor - Editor zkratek + LXQt Shortcut Editor + Editor zkratek Description - Popis + Popis Shortcut - Zkratka + Zkratka Command - Příkaz + Příkaz Add New - Přidat novou + Přidat novou Remove - Odstranit + Odstranit Add Group - Přidat skupinu + Přidat skupinu Reset - Vynulovat + Vynulovat Close - Zavřít + Zavřít ShortcutEditor None - Žádná + Žádná Add Shortcut - Přidat zkratku + Přidat zkratku Remove - Odstranit + Odstranit New Group - Nová skupina + Nová skupina Reset Changes - Vynulovat změny + Vynulovat změny - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_da.desktop b/config/translations/lxqt-config-globalkeyshortcuts_da.desktop index 73b6098..ff6f536 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_da.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_da.desktop @@ -1,4 +1,4 @@ # Translations -Name[da]=Konfiguration af LxQt Tastaturgenveje -Comment[da]=Konfigurer globale tastaturgenveje for LxQt-skrivebordet -GenericName[da]=Konfiguration af LxQt Globale Tastaturgenveje +Name[da]=Konfiguration af LXQt Tastaturgenveje +Comment[da]=Konfigurer globale tastaturgenveje for LXQt-skrivebordet +GenericName[da]=Konfiguration af LXQt Globale Tastaturgenveje diff --git a/config/translations/lxqt-config-globalkeyshortcuts_da_DK.desktop b/config/translations/lxqt-config-globalkeyshortcuts_da_DK.desktop index 75a41c3..8715242 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_da_DK.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_da_DK.desktop @@ -1,4 +1,4 @@ # Translations -Name[da_DK]=Konfiguration af LxQt Tastaturgenveje -Comment[da_DK]=Konfigurer globale tastaturgenveje for LxQt-skrivebordet -GenericName[da_DK]=Konfiguration af LxQt Globale Tastaturgenveje +Name[da_DK]=Konfiguration af LXQt Tastaturgenveje +Comment[da_DK]=Konfigurer globale tastaturgenveje for LXQt-skrivebordet +GenericName[da_DK]=Konfiguration af LXQt Globale Tastaturgenveje diff --git a/config/translations/lxqt-config-globalkeyshortcuts_da_DK.ts b/config/translations/lxqt-config-globalkeyshortcuts_da_DK.ts index 1b5f50f..cf33d41 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_da_DK.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_da_DK.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Find en kommando + Find en kommando + + + + DefaultModel + + + Command + Kommando + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Genvej + + + + Description + Beskrivelse + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Fjern + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Ingen + + + + All + + + + + Close + Afslut ShortcutConfigWindow - LxQt Shortcut Editor - LxQt Tastaturgenveje + LXQt Shortcut Editor + LXQt Tastaturgenveje Description - Beskrivelse + Beskrivelse Shortcut - Genvej + Genvej Command - Kommando + Kommando Add New - Tilføj ny + Tilføj ny Remove - Fjern + Fjern Add Group - Tilføj gruppe + Tilføj gruppe Reset - Nulstil + Nulstil Close - Afslut + Afslut ShortcutEditor None - Ingen + Ingen Add Shortcut - Tilføj genvej + Tilføj genvej Remove - Fjern + Fjern New Group - Ny gruppe + Ny gruppe Reset Changes - Nulstil ændringer + Nulstil ændringer - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_de.desktop b/config/translations/lxqt-config-globalkeyshortcuts_de.desktop new file mode 100644 index 0000000..6013145 --- /dev/null +++ b/config/translations/lxqt-config-globalkeyshortcuts_de.desktop @@ -0,0 +1,4 @@ +# Translations +Name[de]=Kurzbefehl-Konfiguration +GenericName[de]=Globale Kurzbefehlkonfiguration +Comment[de]=Globale Kurzbefehle für die LXQt Arbeitsfläche definieren diff --git a/config/translations/lxqt-config-globalkeyshortcuts_de.ts b/config/translations/lxqt-config-globalkeyshortcuts_de.ts index d1b91fb..60aa810 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_de.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_de.ts @@ -1,75 +1,169 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + Befehl + + + + DBus call + DBus-Aufruf + + + + Client + Client + + + + Id + Kennung + + + + Shortcut + Kurzbefehl + + + + Description + Beschreibung + + + + Type + Typ - Find a command - + + Info + Information - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + Befehl bearbeiten - Description - + + &Shortcut: + &Kurzbefehl: - Shortcut - + + &Description: + &Beschreibung: - Command - + + &Enabled + &Aktiviert - Add New - + + &Command + B&efehl - Remove - Entfernen + + &DBus message + &DBus-Nachricht - Add Group - + + Type: + Typ: - Reset - + + Co&mmand: + Be&fehl: - Close - Schließen + + S&ervice: + Ser&vice: + + + + &Path: + &Pfad: + + + + &Interface: + &Schnittstelle: + &Interface: + + + + &Method: + &Methode: - ShortcutEditor + MainWindow - None - + + Global Actions Manager + Globaler Aktionsmanager - Add Shortcut - + + Add ... + Hinzufügen ... + Remove Entfernen - New Group - + + Modify ... + Ändern ... + + + + Swap + Tauschen + + + + Multiple actions behaviour: + Verhalten bei mehreren Aktionen: - Reset Changes - + + First + Erste + + + + Last + Letzte + + + + None + Keine + + + + All + Alle + + + + Close + Schließen - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_de_DE.desktop b/config/translations/lxqt-config-globalkeyshortcuts_de_DE.desktop deleted file mode 100644 index 9db6c39..0000000 --- a/config/translations/lxqt-config-globalkeyshortcuts_de_DE.desktop +++ /dev/null @@ -1,4 +0,0 @@ -# Translations -Name[de_DE]=LxQt Hotkey Konfiguration -Comment[de_DE]=Globalen Hotkey für LxQt Desktop definieren -GenericName[de_DE]=LxQt Globale Hotkey Konfiguration diff --git a/config/translations/lxqt-config-globalkeyshortcuts_de_DE.ts b/config/translations/lxqt-config-globalkeyshortcuts_de_DE.ts deleted file mode 100644 index 4496961..0000000 --- a/config/translations/lxqt-config-globalkeyshortcuts_de_DE.ts +++ /dev/null @@ -1,75 +0,0 @@ - - - CommandFinder - - ... - ... - - - Find a command - Finde einen Befehl - - - - ShortcutConfigWindow - - LxQt Shortcut Editor - LxQt Hotkey Editor - - - Description - Beschreibung - - - Shortcut - Hotkey - - - Command - Befehl - - - Add New - Hinzufügen - - - Remove - Entfernen - - - Add Group - Gruppe hinzufügen - - - Reset - Verwerfen - - - Close - Schließen - - - - ShortcutEditor - - None - Kein - - - Add Shortcut - Hotkey hinzufügen - - - Remove - Entfernen - - - New Group - Neue Gruppe - - - Reset Changes - Änderungen verwerfen - - - \ No newline at end of file diff --git a/config/translations/lxqt-config-globalkeyshortcuts_el.desktop b/config/translations/lxqt-config-globalkeyshortcuts_el.desktop new file mode 100644 index 0000000..bffa4f0 --- /dev/null +++ b/config/translations/lxqt-config-globalkeyshortcuts_el.desktop @@ -0,0 +1,4 @@ +# Translations +Name[el]=Πλήκτρα συντομεύσεων +GenericName[el]=Ρυθμίσεις συντομεύσεων πληκτρολογίου +Comment[el]=Διαμόρφωση των πλήκτρων συντομεύσεων του LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_el.ts b/config/translations/lxqt-config-globalkeyshortcuts_el.ts new file mode 100644 index 0000000..c0a5427 --- /dev/null +++ b/config/translations/lxqt-config-globalkeyshortcuts_el.ts @@ -0,0 +1,241 @@ + + + + + CommandFinder + + ... + ... + + + Find a command + Εύρεση εντολής + + + + DefaultModel + + + Command + Εντολή + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Συντόμευση + + + + Description + Περιγραφή + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Αφαίρεση + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Κανένα + + + + All + + + + + Close + Κλείσιμο + + + + ShortcutConfigWindow + + LXQt Shortcut Editor + Επεξεργασία συντομεύσεων LXQt + + + Description + Περιγραφή + + + Shortcut + Συντόμευση + + + Command + Εντολή + + + Add New + Προσθήκη νέας + + + Remove + Αφαίρεση + + + Add Group + Προσθήκη ομάδας + + + Reset + Επαναφορά + + + Close + Κλείσιμο + + + + ShortcutEditor + + None + Κανένα + + + Add Shortcut + Προσθήκη συντόμευσης + + + Remove + Αφαίρεση + + + New Group + Νέα ομάδα + + + Reset Changes + Επαναφορά αλλαγών + + + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_el_GR.desktop b/config/translations/lxqt-config-globalkeyshortcuts_el_GR.desktop deleted file mode 100644 index 6943d5e..0000000 --- a/config/translations/lxqt-config-globalkeyshortcuts_el_GR.desktop +++ /dev/null @@ -1,4 +0,0 @@ -# Translations -Name[el_GR]=Διαμόρφωση συντομεύσεων LxQt -Comment[el_GR]=Διαμόρφωση των καθολικών συντομεύσεων του LxQt -GenericName[el_GR]=Διαμόρφωση καθολικών συντομεύσεων LxQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_el_GR.ts b/config/translations/lxqt-config-globalkeyshortcuts_el_GR.ts deleted file mode 100644 index b4425ab..0000000 --- a/config/translations/lxqt-config-globalkeyshortcuts_el_GR.ts +++ /dev/null @@ -1,75 +0,0 @@ - - - CommandFinder - - ... - ... - - - Find a command - Εύρεση εντολής - - - - ShortcutConfigWindow - - LxQt Shortcut Editor - Επεξεργασία συντομεύσεων LxQt - - - Description - Περιγραφή - - - Shortcut - Συντόμευση - - - Command - Εντολή - - - Add New - Προσθήκη νέας - - - Remove - Αφαίρεση - - - Add Group - Προσθήκη ομάδας - - - Reset - Επαναφορά - - - Close - Κλείσιμο - - - - ShortcutEditor - - None - Κανένα - - - Add Shortcut - Προσθήκη συντόμευσης - - - Remove - Αφαίρεση - - - New Group - Νέα ομάδα - - - Reset Changes - Επαναφορά αλλαγών - - - \ No newline at end of file diff --git a/config/translations/lxqt-config-globalkeyshortcuts_eo.ts b/config/translations/lxqt-config-globalkeyshortcuts_eo.ts index b660dda..c8ea875 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_eo.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_eo.ts @@ -1,75 +1,194 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + Priskribo + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - Priskribo + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - Forigi + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - Fermi + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Forigi + + + + Modify ... + + + + + Swap + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + None - Nenio + Nenio - Add Shortcut - + + All + + + + + Close + Fermi + + + + ShortcutConfigWindow + + Description + Priskribo Remove - Forigi + Forigi - New Group - + Close + Fermi + + + ShortcutEditor - Reset Changes - + None + Nenio + + + Remove + Forigi - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_es.desktop b/config/translations/lxqt-config-globalkeyshortcuts_es.desktop index 0d356d6..8899d55 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_es.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_es.desktop @@ -1,4 +1,4 @@ # Translations -Name[es]=Configuración de Atajos de LxQt -Comment[es]=Configure atajos globales del Escritorio de LxQt -GenericName[es]=Configuración de Atajos Globales de LxQt +Name[es]=Configuración de Atajos de LXQt +Comment[es]=Configure atajos globales del Escritorio de LXQt +GenericName[es]=Configuración de Atajos Globales de LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_es.ts b/config/translations/lxqt-config-globalkeyshortcuts_es.ts index 1087c9e..2fdf33e 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_es.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_es.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Encontrar un comando + Encontrar un comando + + + + DefaultModel + + + Command + Comando + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Atajo + + + + Description + Descripción + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Borrar + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Ninguno + + + + All + + + + + Close + Cerrar ShortcutConfigWindow - LxQt Shortcut Editor - Editor de Atajos de LxQt + LXQt Shortcut Editor + Editor de Atajos de LXQt Description - Descripción + Descripción Shortcut - Atajo + Atajo Command - Comando + Comando Add New - Agregar nuevo + Agregar nuevo Remove - Borrar + Borrar Add Group - Agregar Grupo + Agregar Grupo Reset - Reiniciar + Reiniciar Close - Cerrar + Cerrar ShortcutEditor None - Ninguno + Ninguno Add Shortcut - Agregar Atajo + Agregar Atajo Remove - Borrar + Borrar New Group - Nuevo Grupo + Nuevo Grupo Reset Changes - Reiniciar Cambios + Reiniciar Cambios - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_es_VE.desktop b/config/translations/lxqt-config-globalkeyshortcuts_es_VE.desktop index 4437987..b73e7ac 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_es_VE.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_es_VE.desktop @@ -1,4 +1,4 @@ # Translations -Name[es_VE]=Configuracion de atajos de LxQt -Comment[es_VE]=Configura atajos de teclado para el escritorio LxQt -GenericName[es_VE]=Configuracion de Atajos globales de LxQt +Name[es_VE]=Configuracion de atajos de LXQt +Comment[es_VE]=Configura atajos de teclado para el escritorio LXQt +GenericName[es_VE]=Configuracion de Atajos globales de LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_es_VE.ts b/config/translations/lxqt-config-globalkeyshortcuts_es_VE.ts index 5df8082..a7614fb 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_es_VE.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_es_VE.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Encontrar un comando + Encontrar un comando + + + + DefaultModel + + + Command + Comando + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Atajo + + + + Description + Descripcion + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Remover + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Nada + + + + All + + + + + Close + Cerrar ShortcutConfigWindow - LxQt Shortcut Editor - Editor de atajos + LXQt Shortcut Editor + Editor de atajos Description - Descripcion + Descripcion Shortcut - Atajo + Atajo Command - Comando + Comando Add New - Agregar Nuevo + Agregar Nuevo Remove - Remover + Remover Add Group - Agregar Grupo + Agregar Grupo Reset - Reiniciar + Reiniciar Close - Cerrar + Cerrar ShortcutEditor None - Nada + Nada Add Shortcut - Nuevo atajo + Nuevo atajo Remove - Remover + Remover New Group - Nuevo Grupo + Nuevo Grupo Reset Changes - Reiniciar cambios + Reiniciar cambios - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_eu.desktop b/config/translations/lxqt-config-globalkeyshortcuts_eu.desktop index 743cffd..ba10b51 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_eu.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_eu.desktop @@ -1,4 +1,4 @@ # Translations -Name[eu]=LxQt lasterbideen konfigurazioa -Comment[eu]=Konfiguratu LxQt mahaigainaren lasterbide globalak -GenericName[eu]=LxQt lasterbide globalen konfigurazioa +Name[eu]=LXQt lasterbideen konfigurazioa +Comment[eu]=Konfiguratu LXQt mahaigainaren lasterbide globalak +GenericName[eu]=LXQt lasterbide globalen konfigurazioa diff --git a/config/translations/lxqt-config-globalkeyshortcuts_eu.ts b/config/translations/lxqt-config-globalkeyshortcuts_eu.ts index 7a64f38..44d3113 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_eu.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_eu.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Bilatu komando bat + Bilatu komando bat + + + + DefaultModel + + + Command + Komandoa + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Lasterbidea + + + + Description + Deskribapena + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Kendu + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Bat ere ez + + + + All + + + + + Close + Itxi ShortcutConfigWindow - LxQt Shortcut Editor - LxQt lasterbide-editorea + LXQt Shortcut Editor + LXQt lasterbide-editorea Description - Deskribapena + Deskribapena Shortcut - Lasterbidea + Lasterbidea Command - Komandoa + Komandoa Add New - Gehitu berria + Gehitu berria Remove - Kendu + Kendu Add Group - Gehitu taldea + Gehitu taldea Reset - Berrezarri + Berrezarri Close - Itxi + Itxi ShortcutEditor None - Bat ere ez + Bat ere ez Add Shortcut - Gehitu lasterbidea + Gehitu lasterbidea Remove - Kendu + Kendu New Group - Talde berria + Talde berria Reset Changes - Berrezarri aldaketak + Berrezarri aldaketak - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_fi.ts b/config/translations/lxqt-config-globalkeyshortcuts_fi.ts index 0959c80..2bcecf7 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_fi.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_fi.ts @@ -1,75 +1,190 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + Kuvaus + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - Kuvaus + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - Poista + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - Sulje + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow + + + Global Actions Manager + + + + Add ... + + + + + Remove + Poista + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + None - + - Add Shortcut - + + All + + + + + Close + Sulje + + + + ShortcutConfigWindow + + Description + Kuvaus Remove - Poista + Poista - New Group - + Close + Sulje + + + ShortcutEditor - Reset Changes - + Remove + Poista - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_fr_FR.ts b/config/translations/lxqt-config-globalkeyshortcuts_fr_FR.ts index 6d988bd..7e1273a 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_fr_FR.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_fr_FR.ts @@ -1,75 +1,190 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - Supprimer + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - Fermer + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow + + + Global Actions Manager + + + + Add ... + + + + + Remove + Supprimer + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + None - Aucun(e) + Aucun(e) - Add Shortcut - + + All + + + + Close + Fermer + + + + ShortcutConfigWindow Remove - Supprimer + Supprimer + + + Close + Fermer + + + ShortcutEditor - New Group - + None + Aucun(e) - Reset Changes - + Remove + Supprimer - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_hu.desktop b/config/translations/lxqt-config-globalkeyshortcuts_hu.desktop index a0bc3f6..5a08f00 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_hu.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_hu.desktop @@ -1,4 +1,4 @@ # Translations -Name[hu]=LxQt gyorsbillentyűk +Name[hu]=LXQt gyorsbillentyűk Comment[hu]=LXQt általános forróbillentyűinek beállítása GenericName[hu]=LXQt gyorsbillentyűk beállítása diff --git a/config/translations/lxqt-config-globalkeyshortcuts_hu.ts b/config/translations/lxqt-config-globalkeyshortcuts_hu.ts index f1173cd..816c613 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_hu.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_hu.ts @@ -5,89 +5,253 @@ CommandFinder ... - ... + ... Find a command - Parancs keresés + Parancs keresés + + + + DefaultModel + + + Command + Parancs + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Forróbillentyű + + + + Description + Leírás + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Törlés + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Nincs + + + + All + + + + + Close + Bezár ShortcutConfigWindow - LxQt Shortcut Editor - LXQt forróbillentyű szerkesztés + LXQt Shortcut Editor + LXQt forróbillentyű szerkesztés Description - Leírás + Leírás Shortcut - Forróbillentyű + Forróbillentyű Command - Parancs + Parancs Add New - Új + Új Remove - Törlés + Törlés Add Group - Csoport + Csoport Reset - Visszavon + Visszavon Close - Bezár + Bezár ShortcutEditor None - Nincs + Nincs Add Shortcut - Forróbillentyű adás + Forróbillentyű adás Remove - Törlés + Törlés New Group - Új csoport + Új csoport Reset Changes - Visszavonás + Visszavonás Question - Kérdés + Kérdés Delete group: %1? (everything inside will be removed altogether) - A %1 csoport törlése? (Minden kapcsolata is törlődik) + A %1 csoport törlése? (Minden kapcsolata is törlődik) Delete %1? - %1 törlése? + %1 törlése? Binding for %1 already exists. Replace old one? - A %1 már foglalt. Felváltsuk az újjal? + A %1 már foglalt. Felváltsuk az újjal? diff --git a/config/translations/lxqt-config-globalkeyshortcuts_it_IT.ts b/config/translations/lxqt-config-globalkeyshortcuts_it_IT.ts index 9154b81..badd050 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_it_IT.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_it_IT.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Trova un comando + Trova un comando + + + + DefaultModel + + + Command + Comando + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Scorciatoie + + + + Description + Descrizione + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Rimuovi + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Nessuna + + + + All + + + + + Close + Chiudi ShortcutConfigWindow - LxQt Shortcut Editor - Editor delle scorciatoie di LxQt + LXQt Shortcut Editor + Editor delle scorciatoie di LXQt Description - Descrizione + Descrizione Shortcut - Scorciatoie + Scorciatoie Command - Comando + Comando Add New - Aggiungi nuova + Aggiungi nuova Remove - Rimuovi + Rimuovi Add Group - Aggiungi gruppo + Aggiungi gruppo Reset - Azzera + Azzera Close - Chiudi + Chiudi ShortcutEditor None - Nessuna + Nessuna Add Shortcut - Aggiungi scorciatoia + Aggiungi scorciatoia Remove - Rimuovi + Rimuovi New Group - Nuovo gruppo + Nuovo gruppo Reset Changes - Azzera le modifiche + Azzera le modifiche - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ja.ts b/config/translations/lxqt-config-globalkeyshortcuts_ja.ts index bc8968e..09580d9 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ja.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_ja.ts @@ -1,75 +1,182 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - 閉じる + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow - None - なし + + Global Actions Manager + - Add Shortcut - + + Add ... + + Remove - + + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + なし - New Group - + + All + - Reset Changes - + + Close + 閉じる + + + + ShortcutConfigWindow + + Close + 閉じる + + + + ShortcutEditor + + None + なし - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_lt.ts b/config/translations/lxqt-config-globalkeyshortcuts_lt.ts index 7047418..e7e9221 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_lt.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_lt.ts @@ -1,75 +1,190 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - Pašalinti + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - Uždaryti + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow + + + Global Actions Manager + + + + Add ... + + + + + Remove + Pašalinti + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + None - Nieko + Nieko - Add Shortcut - + + All + + + + Close + Uždaryti + + + + ShortcutConfigWindow Remove - Pašalinti + Pašalinti + + + Close + Uždaryti + + + ShortcutEditor - New Group - + None + Nieko - Reset Changes - + Remove + Pašalinti - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_nl.ts b/config/translations/lxqt-config-globalkeyshortcuts_nl.ts index e73fe57..cf505c2 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_nl.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_nl.ts @@ -1,75 +1,190 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - Verwijderen + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - Sluiten + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow + + + Global Actions Manager + + + + Add ... + + + + + Remove + Verwijderen + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + None - Geen + Geen - Add Shortcut - + + All + + + + Close + Sluiten + + + + ShortcutConfigWindow Remove - Verwijderen + Verwijderen + + + Close + Sluiten + + + ShortcutEditor - New Group - + None + Geen - Reset Changes - + Remove + Verwijderen - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.desktop b/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.desktop index 502470f..9d1996f 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.desktop @@ -1,4 +1,4 @@ # Translations -Name[pl_PL]=Konfiguracja skrótów pulpitu LxQt -Comment[pl_PL]=Określ globalny skrót pulpitu LxQt -GenericName[pl_PL]=Konfiguracja globalnych skrótów pulpitu LxQt +Name[pl_PL]=Konfiguracja skrótów pulpitu LXQt +Comment[pl_PL]=Określ globalny skrót pulpitu LXQt +GenericName[pl_PL]=Konfiguracja globalnych skrótów pulpitu LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.ts b/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.ts index 07e3884..6ad44a5 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_pl_PL.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Znajdź polecenie + Znajdź polecenie + + + + DefaultModel + + + Command + Polecenie + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Skrót + + + + Description + Opis + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Usuń + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Brak + + + + All + + + + + Close + Zamknij ShortcutConfigWindow - LxQt Shortcut Editor - Edytor Skrótów LxQt + LXQt Shortcut Editor + Edytor Skrótów LXQt Description - Opis + Opis Shortcut - Skrót + Skrót Command - Polecenie + Polecenie Add New - Dodaj + Dodaj Remove - Usuń + Usuń Add Group - Dodaj grupę + Dodaj grupę Reset - Reset + Reset Close - Zamknij + Zamknij ShortcutEditor None - Brak + Brak Add Shortcut - Dodaj skrót + Dodaj skrót Remove - Usuń + Usuń New Group - Dodaj grupę + Dodaj grupę Reset Changes - Resetuj zmiany + Resetuj zmiany - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_pt.desktop b/config/translations/lxqt-config-globalkeyshortcuts_pt.desktop index 393cf64..f19486c 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_pt.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_pt.desktop @@ -1,4 +1,4 @@ # Translations Name[pt]=Teclas de atalho GenericName[pt]=Definições das teclas de atalho -Comment[pt]=Configurar as teclas de atalho do LxQt +Comment[pt]=Configurar as teclas de atalho do LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_pt.ts b/config/translations/lxqt-config-globalkeyshortcuts_pt.ts index c9e3ebc..dd17dd2 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_pt.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_pt.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Encontrar um comando + Encontrar um comando + + + + DefaultModel + + + Command + Comando + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Atalho + + + + Description + Descrição + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Remover + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Nada + + + + All + + + + + Close + Fechar ShortcutConfigWindow - LxQt Shortcut Editor - Editor de atalhos do LxQt + LXQt Shortcut Editor + Editor de atalhos do LXQt Description - Descrição + Descrição Shortcut - Atalho + Atalho Command - Comando + Comando Add New - Adicionar + Adicionar Remove - Remover + Remover Add Group - Adicionar grupo + Adicionar grupo Reset - Restaurar + Restaurar Close - Fechar + Fechar ShortcutEditor None - Nada + Nada Add Shortcut - Adicionar atalho + Adicionar atalho Remove - Remover + Remover New Group - Novo grupo + Novo grupo Reset Changes - Restaurar alterações + Restaurar alterações - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.desktop b/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.desktop index f8474f6..6b942e6 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.desktop @@ -1,4 +1,4 @@ # Translations Name[pt_BR]=Configuração Do Atalho -Comment[pt_BR]=Configurar atalhos globais do desktop LxQt +Comment[pt_BR]=Configurar atalhos globais do desktop LXQt GenericName[pt_BR]=Configurações Dos Atalhos Globais diff --git a/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.ts b/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.ts index fee7ca2..a6dd489 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_pt_BR.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Encontrar um comando + Encontrar um comando + + + + DefaultModel + + + Command + Comando + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Atalho + + + + Description + Descrição + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Remover + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Nenhum + + + + All + + + + + Close + Fechar ShortcutConfigWindow - LxQt Shortcut Editor - Editor De Atalhos + LXQt Shortcut Editor + Editor De Atalhos Description - Descrição + Descrição Shortcut - Atalho + Atalho Command - Comando + Comando Add New - Adicionar Novo + Adicionar Novo Remove - Remover + Remover Add Group - Adicionar Grupo + Adicionar Grupo Reset - Redefinir + Redefinir Close - Fechar + Fechar ShortcutEditor None - Nenhum + Nenhum Add Shortcut - Adicionat Atalho + Adicionat Atalho Remove - Remover + Remover New Group - Novo Grupo + Novo Grupo Reset Changes - Redefinir Alterações + Redefinir Alterações - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.desktop b/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.desktop index c8db222..a0f7477 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.desktop @@ -1,4 +1,4 @@ # Translations -Name[ro_RO]=Configurație acceleratori LxQt -Comment[ro_RO]=Configurează acceleratorii globali pentru LxQt -GenericName[ro_RO]=Configurație acceleratori globali LxQt +Name[ro_RO]=Configurație acceleratori LXQt +Comment[ro_RO]=Configurează acceleratorii globali pentru LXQt +GenericName[ro_RO]=Configurație acceleratori globali LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.ts b/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.ts index 53e9379..c19136d 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_ro_RO.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Caută o comandă + Caută o comandă + + + + DefaultModel + + + Command + Comandă + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Accelerator + + + + Description + Descriere + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Elimină + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Nimic + + + + All + + + + + Close + Închide ShortcutConfigWindow - LxQt Shortcut Editor - Editor acceleratori LxQt + LXQt Shortcut Editor + Editor acceleratori LXQt Description - Descriere + Descriere Shortcut - Accelerator + Accelerator Command - Comandă + Comandă Add New - Adaugă nou + Adaugă nou Remove - Elimină + Elimină Add Group - Adaugă grup + Adaugă grup Reset - Resetează + Resetează Close - Închide + Închide ShortcutEditor None - Nimic + Nimic Add Shortcut - Adaugă accelerator + Adaugă accelerator Remove - Elimină + Elimină New Group - Grup nou + Grup nou Reset Changes - Resetează modificările + Resetează modificările - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ru.desktop b/config/translations/lxqt-config-globalkeyshortcuts_ru.desktop index aeba45b..f8a39e1 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ru.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_ru.desktop @@ -1,4 +1,4 @@ # Translations Name[ru]=Сочетания клавиш -Comment[ru]=Настроить сочетание клавиш в LxQt +Comment[ru]=Настроить сочетание клавиш в LXQt GenericName[ru]=Настроить сочетания клавиш \ No newline at end of file diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ru.ts b/config/translations/lxqt-config-globalkeyshortcuts_ru.ts index 75f9917..b632e5a 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ru.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_ru.ts @@ -19,27 +19,27 @@ Клиент - + Id id - + Shortcut Сочетание клавиш - + Description Описание - + Type Тип - + Info Информация diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.desktop b/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.desktop index adc25b7..20df390 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.desktop @@ -1,4 +1,4 @@ # Translations Name[ru_RU]=Сочетания клавиш -Comment[ru_RU]=Настроить сочетание клавиш в LxQt +Comment[ru_RU]=Настроить сочетание клавиш в LXQt GenericName[ru_RU]=Настроить сочетания клавиш \ No newline at end of file diff --git a/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.ts b/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.ts index 9326e0e..f98baef 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_ru_RU.ts @@ -19,27 +19,27 @@ Клиент - + Id id - + Shortcut Сочетание клавиш - + Description Описание - + Type Тип - + Info Информация diff --git a/config/translations/lxqt-config-globalkeyshortcuts_sl.ts b/config/translations/lxqt-config-globalkeyshortcuts_sl.ts index 3f51acf..b913086 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_sl.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_sl.ts @@ -1,75 +1,190 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - Odstrani + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - Zapri + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow + + + Global Actions Manager + + + + Add ... + + + + + Remove + Odstrani + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + None - Brez + Brez - Add Shortcut - + + All + + + + Close + Zapri + + + + ShortcutConfigWindow Remove - Odstrani + Odstrani + + + Close + Zapri + + + ShortcutEditor - New Group - + None + Brez - Reset Changes - + Remove + Odstrani - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_th_TH.desktop b/config/translations/lxqt-config-globalkeyshortcuts_th_TH.desktop index 1f5bb10..e723c6f 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_th_TH.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_th_TH.desktop @@ -1,4 +1,4 @@ # Translations -Name[th_TH]=การตั้งค่าปุ่มลัด LxQt -Comment[th_TH]=ตั้งค่าปุ่มลัดหลักของ LxQt เดกส์ท็อป -GenericName[th_TH]=การตั้งค่าปุ่มลัดหลัก LxQt +Name[th_TH]=การตั้งค่าปุ่มลัด LXQt +Comment[th_TH]=ตั้งค่าปุ่มลัดหลักของ LXQt เดกส์ท็อป +GenericName[th_TH]=การตั้งค่าปุ่มลัดหลัก LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_th_TH.ts b/config/translations/lxqt-config-globalkeyshortcuts_th_TH.ts index f6dc646..1bd93d7 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_th_TH.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_th_TH.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - หาคำสั่ง + หาคำสั่ง + + + + DefaultModel + + + Command + คำสั่ง + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + ปุ่มลัด + + + + Description + รายละเอียด + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + ลบทิ้ง + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + ไม่ต้อง + + + + All + + + + + Close + ปิด ShortcutConfigWindow - LxQt Shortcut Editor - ตัวแก้ไขปุ่มลัด LxQt + LXQt Shortcut Editor + ตัวแก้ไขปุ่มลัด LXQt Description - รายละเอียด + รายละเอียด Shortcut - ปุ่มลัด + ปุ่มลัด Command - คำสั่ง + คำสั่ง Add New - เพิ่มใหม่ + เพิ่มใหม่ Remove - ลบทิ้ง + ลบทิ้ง Add Group - เพิ่มกลุ่ม + เพิ่มกลุ่ม Reset - กลับค่าเดิม + กลับค่าเดิม Close - ปิด + ปิด ShortcutEditor None - ไม่ต้อง + ไม่ต้อง Add Shortcut - เพิ่มปุ่มลัด + เพิ่มปุ่มลัด Remove - ลบทิ้ง + ลบทิ้ง New Group - กลุ่มใหม่ + กลุ่มใหม่ Reset Changes - กลับค่าเดิม + กลับค่าเดิม - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_tr.ts b/config/translations/lxqt-config-globalkeyshortcuts_tr.ts index e25703d..49464c2 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_tr.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_tr.ts @@ -1,75 +1,182 @@ - + + + - CommandFinder + DefaultModel - ... - + + Command + + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + + + + + Description + + + + + Type + - Find a command - + + Info + - ShortcutConfigWindow + EditActionDialog - LxQt Shortcut Editor - + + Edit Action + - Description - + + &Shortcut: + - Shortcut - + + &Description: + - Command - + + &Enabled + - Add New - + + &Command + - Remove - + + &DBus message + - Add Group - + + Type: + - Reset - + + Co&mmand: + - Close - Kapat + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + - ShortcutEditor + MainWindow - None - Yok + + Global Actions Manager + - Add Shortcut - + + Add ... + + Remove - + + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Yok - New Group - + + All + - Reset Changes - + + Close + Kapat + + + + ShortcutConfigWindow + + Close + Kapat + + + + ShortcutEditor + + None + Yok - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_uk.desktop b/config/translations/lxqt-config-globalkeyshortcuts_uk.desktop index 57a58f5..d251793 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_uk.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_uk.desktop @@ -1,4 +1,4 @@ # Translations -Name[uk]=Налаштування скорочень LxQt -Comment[uk]=Налаштувати глобальні скорочення стільниці LxQt -GenericName[uk]=Налаштування глобальних скорочень LxQt +Name[uk]=Налаштування скорочень LXQt +Comment[uk]=Налаштувати глобальні скорочення стільниці LXQt +GenericName[uk]=Налаштування глобальних скорочень LXQt diff --git a/config/translations/lxqt-config-globalkeyshortcuts_uk.ts b/config/translations/lxqt-config-globalkeyshortcuts_uk.ts index 37e77c5..6426507 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_uk.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_uk.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - Знайти команду + Знайти команду + + + + DefaultModel + + + Command + Команда + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + Cкорочення + + + + Description + Опис + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + Вилучити + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + Нічого + + + + All + + + + + Close + Закрити ShortcutConfigWindow - LxQt Shortcut Editor - Редактор скорочень LxQt + LXQt Shortcut Editor + Редактор скорочень LXQt Description - Опис + Опис Shortcut - Cкорочення + Cкорочення Command - Команда + Команда Add New - Додати нове + Додати нове Remove - Вилучити + Вилучити Add Group - Додати групу + Додати групу Reset - Cкинути + Cкинути Close - Закрити + Закрити ShortcutEditor None - Нічого + Нічого Add Shortcut - Додати скорочення + Додати скорочення Remove - Вилучити + Вилучити New Group - Нова група + Нова група Reset Changes - Скинути зміни + Скинути зміни - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.desktop b/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.desktop index 83f94fd..78c28be 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.desktop @@ -1,4 +1,4 @@ # Translations -Name[zh_CN]=LxQt 快捷键配置 -Comment[zh_CN]=配置 LxQt 桌面全局快捷键 -GenericName[zh_CN]=LxQt 全局快捷键配置 +Name[zh_CN]=LXQt 快捷键配置 +Comment[zh_CN]=配置 LXQt 桌面全局快捷键 +GenericName[zh_CN]=LXQt 全局快捷键配置 diff --git a/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.ts b/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.ts index 76f7d6a..43cc2e3 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_zh_CN.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - 查找命令 + 查找命令 + + + + DefaultModel + + + Command + 命令 + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + 快捷键 + + + + Description + 描述 + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + 删除 + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + + + + + All + + + + + Close + 关闭 ShortcutConfigWindow - LxQt Shortcut Editor - LxQt 快捷键编辑器 + LXQt Shortcut Editor + LXQt 快捷键编辑器 Description - 描述 + 描述 Shortcut - 快捷键 + 快捷键 Command - 命令 + 命令 Add New - 添加新 + 添加新 Remove - 删除 + 删除 Add Group - 添加组 + 添加组 Reset - 重置 + 重置 Close - 关闭 + 关闭 ShortcutEditor None - + Add Shortcut - 添加快捷键 + 添加快捷键 Remove - 删除 + 删除 New Group - 新建组 + 新建组 Reset Changes - 重置更改 + 重置更改 - \ No newline at end of file + diff --git a/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.desktop b/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.desktop index 5a13245..5ee8199 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.desktop +++ b/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.desktop @@ -1,4 +1,4 @@ # Translations -Name[zh_TW]=LxQt快捷鍵設定 -Comment[zh_TW]=設定LxQt桌面的全域快捷鍵 -GenericName[zh_TW]=LxQt全域快捷鍵設定 +Name[zh_TW]=LXQt快捷鍵設定 +Comment[zh_TW]=設定LXQt桌面的全域快捷鍵 +GenericName[zh_TW]=LXQt全域快捷鍵設定 diff --git a/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.ts b/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.ts index ff7272c..94a70cb 100644 --- a/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.ts +++ b/config/translations/lxqt-config-globalkeyshortcuts_zh_TW.ts @@ -1,75 +1,241 @@ - + + + CommandFinder ... - ... + ... Find a command - 尋找指令 + 尋找指令 + + + + DefaultModel + + + Command + 指令 + + + + DBus call + + + + + Client + + + + + Id + + + + + Shortcut + 快捷鍵 + + + + Description + 描述 + + + + Type + + + + + Info + + + + + EditActionDialog + + + Edit Action + + + + + &Shortcut: + + + + + &Description: + + + + + &Enabled + + + + + &Command + + + + + &DBus message + + + + + Type: + + + + + Co&mmand: + + + + + S&ervice: + + + + + &Path: + + + + + &Interface: + + + + + &Method: + + + + + MainWindow + + + Global Actions Manager + + + + + Add ... + + + + + Remove + 移除 + + + + Modify ... + + + + + Swap + + + + + Multiple actions behaviour: + + + + + First + + + + + Last + + + + + None + + + + + All + + + + + Close + 關閉 ShortcutConfigWindow - LxQt Shortcut Editor - LxQt快捷鍵編輯器 + LXQt Shortcut Editor + LXQt快捷鍵編輯器 Description - 描述 + 描述 Shortcut - 快捷鍵 + 快捷鍵 Command - 指令 + 指令 Add New - 新增 + 新增 Remove - 移除 + 移除 Add Group - 新增群組 + 新增群組 Reset - 重設 + 重設 Close - 關閉 + 關閉 ShortcutEditor None - + Add Shortcut - 增加快捷鍵 + 增加快捷鍵 Remove - 移除 + 移除 New Group - 新群組 + 新群組 Reset Changes - 重設更改 + 重設更改 - \ No newline at end of file + diff --git a/daemon/core.cpp b/daemon/core.cpp index dbc6eee..a5d6295 100644 --- a/daemon/core.cpp +++ b/daemon/core.cpp @@ -404,7 +404,7 @@ Core::Core(bool useSyslog, bool minLogLevelSet, int minLogLevel, const QStringLi openlog("lxqt-global-action-daemon", LOG_PID, LOG_USER); - connect(lxqtApp, &LxQt::Application::unixSignal, this, &Core::unixSignalHandler); + connect(lxqtApp, &LXQt::Application::unixSignal, this, &Core::unixSignalHandler); lxqtApp->listenToUnixSignals(QList() << SIGTERM << SIGINT); diff --git a/daemon/main.cpp b/daemon/main.cpp index 063ea01..6c29912 100644 --- a/daemon/main.cpp +++ b/daemon/main.cpp @@ -239,7 +239,7 @@ int main(int argc, char *argv[]) configFiles.push_back(QString::fromLocal8Bit(home) + "/" DEFAULT_CONFIG); } - LxQt::Application app(argc, argv); + LXQt::Application app(argc, argv); Core core(runAsDaemon || useSyslog, minLogLevelSet, minLogLevel, configFiles, multipleActionsBehaviourSet, multipleActionsBehaviour); diff --git a/debian/changelog b/debian/changelog index bbd5492..7c04a08 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +lxqt-globalkeys (0.10.0-2) unstable; urgency=medium + + * Merge from experimental. + * New upstream release. + + -- ChangZhuo Chen (陳昌倬) Sun, 15 Nov 2015 15:40:51 +0800 + lxqt-globalkeys (0.9.0+20150806-2) unstable; urgency=medium * Remove --list-missing from rules, it's included in --fail-missing diff --git a/debian/control b/debian/control index 9843b24..b699d6e 100644 --- a/debian/control +++ b/debian/control @@ -8,16 +8,16 @@ Priority: optional Build-Depends: debhelper (>= 9), cmake (>= 3.0.2), libkf5windowsystem-dev, - liblxqt0-dev, + liblxqt0-dev (>= 0.10.0), libqt5x11extras5-dev, - libqt5xdg-dev, + libqt5xdg-dev (>= 1.3.0), libx11-dev, pkg-config, qttools5-dev, qttools5-dev-tools Standards-Version: 3.9.6 -Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/lxqt-globalkeys.git -Vcs-Git: git://anonscm.debian.org/pkg-lxqt/lxqt-globalkeys.git +Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/lxqt-globalkeys.git/?h=debian/sid +Vcs-Git: git://anonscm.debian.org/pkg-lxqt/lxqt-globalkeys.git -b debian/sid Homepage: https://github.com/lxde/lxqt-globalkeys Package: lxqt-globalkeys diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..7a9f00a --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,8 @@ +[DEFAULT] +debian-branch = debian/sid +upstream-branch = upstream/latest +pristine-tar = True + +[import-orig] +# Use git cherrypick -n upstream instead. +merge = False diff --git a/debian/upstream/signing-key.asc b/debian/upstream/signing-key.asc new file mode 100644 index 0000000..05cd1df --- /dev/null +++ b/debian/upstream/signing-key.asc @@ -0,0 +1,63 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v2.0.22 (GNU/Linux) + +mQINBFJevCYBEACx+Hvy+Vsuf+V5jeLUnzjAmHoy8DfTeGWr3ts30IapLHrfi0+U +WpzNnISO77yTr4VNboVZH+GHM/rnPfieODfB4ZW6CZLlInMSKUXcgQsEqXpyBZhA +Ib/SPy2bOfHly1uRJes0uRDsH5+v/hD74sByfnjQlrvI68O6wvGZmDFMNNPVO8+/ +OWBSBNkBuVrrZOMSPsLwQGJ4UtUQ4whburaPJG4VZJc5DLbzJGbEuACc0IAEYJS3 +7AfXVXn4j4Gc9F3o1xTUnbOBnwGPquWwUIm3FM7Ec2OdkvMt3EwvnkMAfeVrq3iE +FDD/KZTxdL0BZH3QD8gB7Jm4v4f3Nkobg6JCvCbcH3wBdZW4mASbwWzfRaDC2zHb +ErTglD7PpShLKZZ0pr9okWZEGw4Ku3q8ALi1JXK/ePTmsBlvkVskOJ3Nnd0avgH4 ++Q/vZoKfH8EhNY745rI+8CE9iv6V9XiSUt4CKEWAENt4A8hq6U2vV+jZv3B6AgD7 +ZjiI59yD4YuYubu8rCnNizTgh1voVw3ietknn/x2H5yH8fByWZ5uL87C0ky/uma6 +ZGbiiAtM4kdkyDMrfRV5nlEG9EKAGPVu5mjeSCrfkETwZ9OFPz1AuDye4ZEXrrcC +iRQ7RX6/GtW18aHER0kzGnfwx5KJzkDrRBY8A2PdXLBcrsN4WpK9EX01PQARAQAB +tCNKZXJvbWUgTGVjbGFuY2hlIDxqZXJvbWVAbGVjbGFuLmNoPokCPwQTAQIAKQUC +Ul68JgIbAwUJAeEzgAcLCQgHAwIBBhUIAgkKCwQWAgMBAh4BAheAAAoJEDfgrx/a +SPNzSHIP/1ewXcC0TFBcvDD7MrIP7anyNfiWfW7cxkR8GSamkg6HTa6Ndyr1FFjJ +OoDFUP37jWhu59CsHxs2D0zRWJktezfvElscRgqbHcdpIznqsGdI8hXCZafhBGVb +sdAB2LRawcXGxnXt7XajPcSVwLWRE62caBqohznU2iWvI780WNjEbZoA0LhZwaFF +UUPJm8ea9v0IkZVKUyg9WONZ1U7FEG9SaEiSpI8kJdx1fvCwZVDV/NRO5GqnJaho +P1LCne4YdwS6pt1/fRgk32IHxxZfHlLzLHxb6v1JmIg72x28qCmGyK9oFBDbbnYu +6Aq8XbHogOrD5vJM2Pfm2IhV0+JHOjfQbddv8tsAH1M+LI+tToXmg5st1AU3wnTn +pda3hjA1avKwkfBPW/osHc8782ViyS9iX2e9iDtMv608guij4NjpGExzGCypHOd8 ++VXRwJDjvgDynkL206MZ+wn0j5wHsIE8F3Y5Bp1thQOrdDli5MYNQoXhjFmH46XT +bcr84IgW0+AiXZdoFUqvwtzrWy2Onuw5R3k4OyV4skN4DkWXyAk/V+Y4K39JvTKf +H9YuiQ9blNzCu8WiAnjKnh9kNl9E/TyEwI6cHFmIPqF8ST9tJytWHtrKvU9csvXX +n8XNJmpcv2R1e6N+VuWWm5zUPTouv3AxCacLbm8Lh3ymGsk7ZEyhiQIcBBABAgAG +BQJSsFYyAAoJEBMY76xfu9vO6v0P/3wSj3/kE4nP4HfgcVJSzi+lm1ycpbLDZtgh +P1G+zJLVmA+E41vEZimeiYQxBAelatJz+CHzQo3LZ2oVChzVrZcVHn9k4P3pib69 +qCVif3/y0Wmecn+u2TWbOvJ7mthfO7T3W7rkW1/9ES7bUaXcXWQ2sjUBVqFkFsVt +xgJDo8wcxA+K4Yf06GCbxFwrB7X5GraWIkzqGnyse3XAQn8aORAXmE8Yd0FHOjEZ +Beb9shChnkYc3lEvNY8ioCaYSF9xr/Iz9cwpfPkpqFiVYWadtb+Gqeh6zC7vPmcT +zHxrgkq1WwQlSBm724tPt9xuGQoOglqEa23vlQZfv20nyrYjLeYUy6pMCRq7vn/n +nkQOcXF7yQlnqR6xKk0tWsM4e6du0ZvbjBbhHV/kBFVGCLm/upTwoMVm0WJTbr4T +5XfIZo7eA0lvGtUhe1PgcOidBikHfAIfYxu0BoMXoL4jbcQdR5+YBDEfsS0jPhCl +mew2ScW/R/UhUknJUVFTma0KHXzEmKiqeeUCDtwEi6fxdicAYkbcekgkfFiD/w8N +Lk3Uf+0x2MdKA36nUobFkk38oU+GW37kFWJs3f1YRuQFao896eNW/E8ekVMLNxOl +nCjnSbabaxDnxPTyW2KlNjf/QUEK4pT6S5QmuCSrle3PQpaSbAZDHzLBIL9gd3m6 +MH7+SvV4uQINBFJevCYBEADiXDUqstSdhIyuionS2KtE3IeEBIqS7GY8QPRBylIZ +ACVHFI/1HxChBqYVGFaDEQn3gj5lUUQPubfWaxzjF6+UNVQW4+cxmTocndAwfDbI ++E5BLdieFUzbAA05MV5ZjPhTNbSk1jpy4bNy0FILwNqc89Y6SoCbv1r3tZLCrBas +1+AfWknBynx0siGMbLFxtzR6hUkNz9URxt13FrzpUWMpAL8ZQGczOTSaWLrZA5l9 +xLzJ9ww8uM+C2Xej3/sANxi+kQE2GVMKurPS0TICwVWZxbdW/ytIkO67Rhse0q3t +vzjdawfCFRxv7XQB2ZJ6irDxbpHiJoojSWCHJadIyCG03iOiaqsSVvi4KnxtUck+ +udOEJUV5sxdzgeRrsDpeaN//KCWW9WjfsSkvOqP6S1gmWpNFdzF5XrzcgvqvSNqo +XejfakUTJqsIIEHO0zGuJFVzJNh2hQ/9dhjIspUORhtNKaljNvePiBrj2yqmd9PY +FlH1KMHe4H+YVIwPiyeNA87Pu+1yNo8gT7mXhGRfibgWjbt146WUJ7+l2StJMApn +eNSCartNaUNPnw96i2l5c9AsJ3SWC6XWpWzOLVj+9XceeA11lu/ogqEMHzx81NjH +2TePxwKTKxZnAvDmqryp++IgY2/OgIoIk3ZRdYu/dPijTOYWfCet/9/9kAFr9PeJ +KwARAQABiQIlBBgBAgAPBQJSXrwmAhsMBQkB4TOAAAoJEDfgrx/aSPNzJv0QAKkx +lCKEZ6ahAUuNWslsHnNWaHFHNawEO3NIEtQZGVFk2BYISupizvjZF6MnymO/9UFM +pzV6fp3xNdqaKWQBjScOgMgCASRixW2tMAKbJGHZKp3dBixpHgXxy2oOGMS+mQ5m +gWy07usq2YesoMD0K/SG6EnoRPHBvrJihArzMFVUY9hD3hk8bhiy8w9bCYFe+gkm +zpQl3/KN01kyt5LjzEBcIOw8qIBQe9Pk8PyOK75lPoNME714LatgOsyw2kaSQ9Sv +hziRGC5z/fV3PmH7XhSjENPKnCJU51GUMMLaL28t9o7Afh6Q8UV31/JO36vmQXQV ++b+0BoGqEmf3AKBASb2Cr2q4pZFjywwSUXHZ9hQyu1tpbE1dS6aI01kM0y270pk7 +W/ajuzuOxAVL1bJAanL/5+DWM03esZPVdEWhxpWEM40Z6Rhq+Xb2a5xfwCN9PmaQ +o9fez0I+yh53s7Ypv0tBj05FPe5L48+pDi6pz5nddN1B0FzF58jVfsBZUjBlY24+ +VwQeAaWkRXZrSEdtBS5ufsi80x/cNCSTJBWqtborKL1iGgf5MDPYRMSvmZXAeIld +pyL/0pbW7iokewyKzpFfo7KEbwLxB+flWaBZ867JpF4yyRj3b4qcvcyV8QnsoB7Z +KhxTl3gGwD/t0HUcu85zcfs4GkealYhIWfGaAso2 +=fF8P +-----END PGP PUBLIC KEY BLOCK----- diff --git a/debian/watch b/debian/watch index f76e6b3..7f86777 100644 --- a/debian/watch +++ b/debian/watch @@ -1,2 +1,3 @@ version=3 -https://github.com/lxde/lxqt-globalkeys/releases .*/([\d\.]+).tar.gz +opts="pgpsigurlmangle=s/$/.asc/" \ + https://github.com/lxde/lxqt-globalkeys/releases .*/([\d\.]+).tar.gz