* debian/experimental: Update gbp.conf Update Vcs-* fields Cherry-picking upstream version 0.10.0. set minimum versions for libqtxdg and liblxqt Cherry-picking upstream version 0.9.0+20151019. Cherry-picking upstream version 0.9.0+20150926. Remove trail space Add gbp.conf Cherry-picking upstream version 0.9.0+20150914. Update maintainer email Cherry-picked upstream version 0.9.0+20150829 Adding upstream version 0.9.0+20150829. .gitignore fixed removed breaks/replacesubuntu/bionic debian/0.10.0-2
commit
1731431206
@ -0,0 +1,2 @@
|
||||
build
|
||||
*.kdev4
|
@ -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 <kuzma.shapran@gmail.com>
|
||||
*
|
||||
* 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 <QTimer>
|
||||
|
||||
|
||||
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<ShortcutSelector*>(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<QAbstractButton*>(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;
|
||||
}
|
@ -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 <kuzma.shapran@gmail.com>
|
||||
*
|
||||
* 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 <QItemDelegate>
|
||||
|
||||
|
||||
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
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="cs" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="cs">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Najít příkaz</translation>
|
||||
<translation type="vanished">Najít příkaz</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Příkaz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Zkratka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Popis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Žádná</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Zavřít</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor zkratek</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor zkratek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Popis</translation>
|
||||
<translation type="vanished">Popis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Zkratka</translation>
|
||||
<translation type="vanished">Zkratka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Příkaz</translation>
|
||||
<translation type="vanished">Příkaz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Přidat novou</translation>
|
||||
<translation type="vanished">Přidat novou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstranit</translation>
|
||||
<translation type="vanished">Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Přidat skupinu</translation>
|
||||
<translation type="vanished">Přidat skupinu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Vynulovat</translation>
|
||||
<translation type="vanished">Vynulovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Zavřít</translation>
|
||||
<translation type="vanished">Zavřít</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Žádná</translation>
|
||||
<translation type="vanished">Žádná</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Přidat zkratku</translation>
|
||||
<translation type="vanished">Přidat zkratku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstranit</translation>
|
||||
<translation type="vanished">Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Nová skupina</translation>
|
||||
<translation type="vanished">Nová skupina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Vynulovat změny</translation>
|
||||
<translation type="vanished">Vynulovat změny</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="cs_CZ" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="cs_CZ">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Najít příkaz</translation>
|
||||
<translation type="vanished">Najít příkaz</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Příkaz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Zkratka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Popis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Žádná</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Zavřít</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor zkratek</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor zkratek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Popis</translation>
|
||||
<translation type="vanished">Popis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Zkratka</translation>
|
||||
<translation type="vanished">Zkratka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Příkaz</translation>
|
||||
<translation type="vanished">Příkaz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Přidat novou</translation>
|
||||
<translation type="vanished">Přidat novou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstranit</translation>
|
||||
<translation type="vanished">Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Přidat skupinu</translation>
|
||||
<translation type="vanished">Přidat skupinu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Vynulovat</translation>
|
||||
<translation type="vanished">Vynulovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Zavřít</translation>
|
||||
<translation type="vanished">Zavřít</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Žádná</translation>
|
||||
<translation type="vanished">Žádná</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Přidat zkratku</translation>
|
||||
<translation type="vanished">Přidat zkratku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstranit</translation>
|
||||
<translation type="vanished">Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Nová skupina</translation>
|
||||
<translation type="vanished">Nová skupina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Vynulovat změny</translation>
|
||||
<translation type="vanished">Vynulovat změny</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="da_DK" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="da_DK">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Find en kommando</translation>
|
||||
<translation type="vanished">Find en kommando</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Kommando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Genvej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Beskrivelse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Fjern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Ingen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Afslut</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>LxQt Tastaturgenveje</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">LXQt Tastaturgenveje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Beskrivelse</translation>
|
||||
<translation type="vanished">Beskrivelse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Genvej</translation>
|
||||
<translation type="vanished">Genvej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Kommando</translation>
|
||||
<translation type="vanished">Kommando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Tilføj ny</translation>
|
||||
<translation type="vanished">Tilføj ny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Fjern</translation>
|
||||
<translation type="vanished">Fjern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Tilføj gruppe</translation>
|
||||
<translation type="vanished">Tilføj gruppe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Nulstil</translation>
|
||||
<translation type="vanished">Nulstil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Afslut</translation>
|
||||
<translation type="vanished">Afslut</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Ingen</translation>
|
||||
<translation type="vanished">Ingen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Tilføj genvej</translation>
|
||||
<translation type="vanished">Tilføj genvej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Fjern</translation>
|
||||
<translation type="vanished">Fjern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Ny gruppe</translation>
|
||||
<translation type="vanished">Ny gruppe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Nulstil ændringer</translation>
|
||||
<translation type="vanished">Nulstil ændringer</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -0,0 +1,4 @@
|
||||
# Translations
|
||||
Name[de]=Kurzbefehl-Konfiguration
|
||||
GenericName[de]=Globale Kurzbefehlkonfiguration
|
||||
Comment[de]=Globale Kurzbefehle für die LXQt Arbeitsfläche definieren
|
@ -1,75 +1,169 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="de" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation>Befehl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation>DBus-Aufruf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation>Client</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation>Kennung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation>Kurzbefehl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation>Beschreibung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation>Typ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation>Information</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation>Befehl bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation>&Kurzbefehl:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation>&Beschreibung:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation>&Aktiviert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation>B&efehl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Entfernen</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation>&DBus-Nachricht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation>Typ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation>Be&fehl:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Schließen</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation>Ser&vice:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation>&Pfad:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translatorcomment>&Schnittstelle:</translatorcomment>
|
||||
<translation>&Interface:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation>&Methode:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation>Globaler Aktionsmanager</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation>Hinzufügen ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation>Entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation>Ändern ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation>Tauschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation>Verhalten bei mehreren Aktionen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation>Erste</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation>Letzte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation>Keine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation>Alle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation>Schließen</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
@ -1,75 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="de_DE" version="2.0">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Finde einen Befehl</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>LxQt Hotkey Editor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Beschreibung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Hotkey</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Befehl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Gruppe hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Verwerfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Schließen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Kein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Hotkey hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Neue Gruppe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Änderungen verwerfen</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -0,0 +1,4 @@
|
||||
# Translations
|
||||
Name[el]=Πλήκτρα συντομεύσεων
|
||||
GenericName[el]=Ρυθμίσεις συντομεύσεων πληκτρολογίου
|
||||
Comment[el]=Διαμόρφωση των πλήκτρων συντομεύσεων του LXQt
|
@ -1,4 +0,0 @@
|
||||
# Translations
|
||||
Name[el_GR]=Διαμόρφωση συντομεύσεων LxQt
|
||||
Comment[el_GR]=Διαμόρφωση των καθολικών συντομεύσεων του LxQt
|
||||
GenericName[el_GR]=Διαμόρφωση καθολικών συντομεύσεων LxQt
|
@ -1,75 +1,194 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="eo" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="eo">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Priskribo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Priskribo</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Forigi</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Fermi</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Forigi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation>Nenio</translation>
|
||||
<translation type="unfinished">Nenio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Fermi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="vanished">Priskribo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Forigi</translation>
|
||||
<translation type="vanished">Forigi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Fermi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>None</source>
|
||||
<translation type="vanished">Nenio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="vanished">Forigi</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="es" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="es">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Encontrar un comando</translation>
|
||||
<translation type="vanished">Encontrar un comando</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Atajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Descripción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Borrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Ninguno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Cerrar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor de Atajos de LxQt</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor de Atajos de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Descripción</translation>
|
||||
<translation type="vanished">Descripción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Atajo</translation>
|
||||
<translation type="vanished">Atajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Comando</translation>
|
||||
<translation type="vanished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Agregar nuevo</translation>
|
||||
<translation type="vanished">Agregar nuevo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Borrar</translation>
|
||||
<translation type="vanished">Borrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Agregar Grupo</translation>
|
||||
<translation type="vanished">Agregar Grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Reiniciar</translation>
|
||||
<translation type="vanished">Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Cerrar</translation>
|
||||
<translation type="vanished">Cerrar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Ninguno</translation>
|
||||
<translation type="vanished">Ninguno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Agregar Atajo</translation>
|
||||
<translation type="vanished">Agregar Atajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Borrar</translation>
|
||||
<translation type="vanished">Borrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Nuevo Grupo</translation>
|
||||
<translation type="vanished">Nuevo Grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Reiniciar Cambios</translation>
|
||||
<translation type="vanished">Reiniciar Cambios</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="es_VE" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="es_VE">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Encontrar un comando</translation>
|
||||
<translation type="vanished">Encontrar un comando</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Atajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Descripcion</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Nada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Cerrar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor de atajos</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor de atajos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Descripcion</translation>
|
||||
<translation type="vanished">Descripcion</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Atajo</translation>
|
||||
<translation type="vanished">Atajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Comando</translation>
|
||||
<translation type="vanished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Agregar Nuevo</translation>
|
||||
<translation type="vanished">Agregar Nuevo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
<translation type="vanished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Agregar Grupo</translation>
|
||||
<translation type="vanished">Agregar Grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Reiniciar</translation>
|
||||
<translation type="vanished">Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Cerrar</translation>
|
||||
<translation type="vanished">Cerrar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Nada</translation>
|
||||
<translation type="vanished">Nada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Nuevo atajo</translation>
|
||||
<translation type="vanished">Nuevo atajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
<translation type="vanished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Nuevo Grupo</translation>
|
||||
<translation type="vanished">Nuevo Grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Reiniciar cambios</translation>
|
||||
<translation type="vanished">Reiniciar cambios</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="eu" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="eu">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Bilatu komando bat</translation>
|
||||
<translation type="vanished">Bilatu komando bat</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Komandoa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Lasterbidea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Deskribapena</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Kendu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Bat ere ez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Itxi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>LxQt lasterbide-editorea</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">LXQt lasterbide-editorea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Deskribapena</translation>
|
||||
<translation type="vanished">Deskribapena</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Lasterbidea</translation>
|
||||
<translation type="vanished">Lasterbidea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Komandoa</translation>
|
||||
<translation type="vanished">Komandoa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Gehitu berria</translation>
|
||||
<translation type="vanished">Gehitu berria</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Kendu</translation>
|
||||
<translation type="vanished">Kendu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Gehitu taldea</translation>
|
||||
<translation type="vanished">Gehitu taldea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Berrezarri</translation>
|
||||
<translation type="vanished">Berrezarri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Itxi</translation>
|
||||
<translation type="vanished">Itxi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Bat ere ez</translation>
|
||||
<translation type="vanished">Bat ere ez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Gehitu lasterbidea</translation>
|
||||
<translation type="vanished">Gehitu lasterbidea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Kendu</translation>
|
||||
<translation type="vanished">Kendu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Talde berria</translation>
|
||||
<translation type="vanished">Talde berria</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Berrezarri aldaketak</translation>
|
||||
<translation type="vanished">Berrezarri aldaketak</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,75 +1,190 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="fi" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="fi">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Kuvaus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Kuvaus</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Poista</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Sulje</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Poista</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Sulje</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="vanished">Kuvaus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Poista</translation>
|
||||
<translation type="vanished">Poista</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Sulje</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>Remove</source>
|
||||
<translation type="vanished">Poista</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,75 +1,190 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="fr_FR" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="fr_FR">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Supprimer</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Fermer</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation>Aucun(e)</translation>
|
||||
<translation type="unfinished">Aucun(e)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Fermer</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Supprimer</translation>
|
||||
<translation type="vanished">Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Fermer</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>None</source>
|
||||
<translation type="vanished">Aucun(e)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>Remove</source>
|
||||
<translation type="vanished">Supprimer</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="it_IT" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="it_IT">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Trova un comando</translation>
|
||||
<translation type="vanished">Trova un comando</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Scorciatoie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Descrizione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Rimuovi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Nessuna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Chiudi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor delle scorciatoie di LxQt</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor delle scorciatoie di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Descrizione</translation>
|
||||
<translation type="vanished">Descrizione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Scorciatoie</translation>
|
||||
<translation type="vanished">Scorciatoie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Comando</translation>
|
||||
<translation type="vanished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Aggiungi nuova</translation>
|
||||
<translation type="vanished">Aggiungi nuova</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Rimuovi</translation>
|
||||
<translation type="vanished">Rimuovi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Aggiungi gruppo</translation>
|
||||
<translation type="vanished">Aggiungi gruppo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Azzera</translation>
|
||||
<translation type="vanished">Azzera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Chiudi</translation>
|
||||
<translation type="vanished">Chiudi</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Nessuna</translation>
|
||||
<translation type="vanished">Nessuna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Aggiungi scorciatoia</translation>
|
||||
<translation type="vanished">Aggiungi scorciatoia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Rimuovi</translation>
|
||||
<translation type="vanished">Rimuovi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Nuovo gruppo</translation>
|
||||
<translation type="vanished">Nuovo gruppo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Azzera le modifiche</translation>
|
||||
<translation type="vanished">Azzera le modifiche</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,75 +1,182 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ja" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ja">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>閉じる</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>なし</translation>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">なし</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">閉じる</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">閉じる</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation type="vanished">なし</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,75 +1,190 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="lt" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="lt">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Pašalinti</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Uždaryti</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Pašalinti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation>Nieko</translation>
|
||||
<translation type="unfinished">Nieko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Uždaryti</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Pašalinti</translation>
|
||||
<translation type="vanished">Pašalinti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Uždaryti</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>None</source>
|
||||
<translation type="vanished">Nieko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>Remove</source>
|
||||
<translation type="vanished">Pašalinti</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,75 +1,190 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="nl" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="nl">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Verwijderen</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Sluiten</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation>Geen</translation>
|
||||
<translation type="unfinished">Geen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Sluiten</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Verwijderen</translation>
|
||||
<translation type="vanished">Verwijderen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Sluiten</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>None</source>
|
||||
<translation type="vanished">Geen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>Remove</source>
|
||||
<translation type="vanished">Verwijderen</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pl_PL" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="pl_PL">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Znajdź polecenie</translation>
|
||||
<translation type="vanished">Znajdź polecenie</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Polecenie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Skrót</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Opis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Usuń</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Brak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Zamknij</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Edytor Skrótów LxQt</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Edytor Skrótów LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Opis</translation>
|
||||
<translation type="vanished">Opis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Skrót</translation>
|
||||
<translation type="vanished">Skrót</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Polecenie</translation>
|
||||
<translation type="vanished">Polecenie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Dodaj</translation>
|
||||
<translation type="vanished">Dodaj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Usuń</translation>
|
||||
<translation type="vanished">Usuń</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Dodaj grupę</translation>
|
||||
<translation type="vanished">Dodaj grupę</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Reset</translation>
|
||||
<translation type="vanished">Reset</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Zamknij</translation>
|
||||
<translation type="vanished">Zamknij</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Brak</translation>
|
||||
<translation type="vanished">Brak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Dodaj skrót</translation>
|
||||
<translation type="vanished">Dodaj skrót</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Usuń</translation>
|
||||
<translation type="vanished">Usuń</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Dodaj grupę</translation>
|
||||
<translation type="vanished">Dodaj grupę</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Resetuj zmiany</translation>
|
||||
<translation type="vanished">Resetuj zmiany</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pt" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="pt">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Encontrar um comando</translation>
|
||||
<translation type="vanished">Encontrar um comando</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Atalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Descrição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Nada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Fechar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor de atalhos do LxQt</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor de atalhos do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Descrição</translation>
|
||||
<translation type="vanished">Descrição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Atalho</translation>
|
||||
<translation type="vanished">Atalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Comando</translation>
|
||||
<translation type="vanished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Adicionar</translation>
|
||||
<translation type="vanished">Adicionar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
<translation type="vanished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Adicionar grupo</translation>
|
||||
<translation type="vanished">Adicionar grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Restaurar</translation>
|
||||
<translation type="vanished">Restaurar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Fechar</translation>
|
||||
<translation type="vanished">Fechar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Nada</translation>
|
||||
<translation type="vanished">Nada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Adicionar atalho</translation>
|
||||
<translation type="vanished">Adicionar atalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
<translation type="vanished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Novo grupo</translation>
|
||||
<translation type="vanished">Novo grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Restaurar alterações</translation>
|
||||
<translation type="vanished">Restaurar alterações</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pt_BR" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="pt_BR">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Encontrar um comando</translation>
|
||||
<translation type="vanished">Encontrar um comando</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Atalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Descrição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Nenhum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Fechar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor De Atalhos</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor De Atalhos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Descrição</translation>
|
||||
<translation type="vanished">Descrição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Atalho</translation>
|
||||
<translation type="vanished">Atalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Comando</translation>
|
||||
<translation type="vanished">Comando</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Adicionar Novo</translation>
|
||||
<translation type="vanished">Adicionar Novo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
<translation type="vanished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Adicionar Grupo</translation>
|
||||
<translation type="vanished">Adicionar Grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Redefinir</translation>
|
||||
<translation type="vanished">Redefinir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Fechar</translation>
|
||||
<translation type="vanished">Fechar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Nenhum</translation>
|
||||
<translation type="vanished">Nenhum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Adicionat Atalho</translation>
|
||||
<translation type="vanished">Adicionat Atalho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Remover</translation>
|
||||
<translation type="vanished">Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Novo Grupo</translation>
|
||||
<translation type="vanished">Novo Grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Redefinir Alterações</translation>
|
||||
<translation type="vanished">Redefinir Alterações</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ro_RO" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ro_RO">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>Caută o comandă</translation>
|
||||
<translation type="vanished">Caută o comandă</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">Comandă</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">Accelerator</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Descriere</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Elimină</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Nimic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Închide</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>Editor acceleratori LxQt</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">Editor acceleratori LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>Descriere</translation>
|
||||
<translation type="vanished">Descriere</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>Accelerator</translation>
|
||||
<translation type="vanished">Accelerator</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>Comandă</translation>
|
||||
<translation type="vanished">Comandă</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>Adaugă nou</translation>
|
||||
<translation type="vanished">Adaugă nou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Elimină</translation>
|
||||
<translation type="vanished">Elimină</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>Adaugă grup</translation>
|
||||
<translation type="vanished">Adaugă grup</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>Resetează</translation>
|
||||
<translation type="vanished">Resetează</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Închide</translation>
|
||||
<translation type="vanished">Închide</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Nimic</translation>
|
||||
<translation type="vanished">Nimic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>Adaugă accelerator</translation>
|
||||
<translation type="vanished">Adaugă accelerator</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Elimină</translation>
|
||||
<translation type="vanished">Elimină</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>Grup nou</translation>
|
||||
<translation type="vanished">Grup nou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>Resetează modificările</translation>
|
||||
<translation type="vanished">Resetează modificările</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Translations
|
||||
Name[ru]=Сочетания клавиш
|
||||
Comment[ru]=Настроить сочетание клавиш в LxQt
|
||||
Comment[ru]=Настроить сочетание клавиш в LXQt
|
||||
GenericName[ru]=Настроить сочетания клавиш
|
@ -1,4 +1,4 @@
|
||||
# Translations
|
||||
Name[ru_RU]=Сочетания клавиш
|
||||
Comment[ru_RU]=Настроить сочетание клавиш в LxQt
|
||||
Comment[ru_RU]=Настроить сочетание клавиш в LXQt
|
||||
GenericName[ru_RU]=Настроить сочетания клавиш
|
@ -1,75 +1,190 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="sl" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="sl">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstrani</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Zapri</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Odstrani</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation>Brez</translation>
|
||||
<translation type="unfinished">Brez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Zapri</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>Odstrani</translation>
|
||||
<translation type="vanished">Odstrani</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Zapri</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>None</source>
|
||||
<translation type="vanished">Brez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<source>Remove</source>
|
||||
<translation type="vanished">Odstrani</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="th_TH" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="th_TH">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>หาคำสั่ง</translation>
|
||||
<translation type="vanished">หาคำสั่ง</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">คำสั่ง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">ปุ่มลัด</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">รายละเอียด</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">ลบทิ้ง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">ไม่ต้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">ปิด</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>ตัวแก้ไขปุ่มลัด LxQt</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">ตัวแก้ไขปุ่มลัด LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>รายละเอียด</translation>
|
||||
<translation type="vanished">รายละเอียด</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>ปุ่มลัด</translation>
|
||||
<translation type="vanished">ปุ่มลัด</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>คำสั่ง</translation>
|
||||
<translation type="vanished">คำสั่ง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>เพิ่มใหม่</translation>
|
||||
<translation type="vanished">เพิ่มใหม่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>ลบทิ้ง</translation>
|
||||
<translation type="vanished">ลบทิ้ง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>เพิ่มกลุ่ม</translation>
|
||||
<translation type="vanished">เพิ่มกลุ่ม</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>กลับค่าเดิม</translation>
|
||||
<translation type="vanished">กลับค่าเดิม</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>ปิด</translation>
|
||||
<translation type="vanished">ปิด</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>ไม่ต้อง</translation>
|
||||
<translation type="vanished">ไม่ต้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>เพิ่มปุ่มลัด</translation>
|
||||
<translation type="vanished">เพิ่มปุ่มลัด</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>ลบทิ้ง</translation>
|
||||
<translation type="vanished">ลบทิ้ง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>กลุ่มใหม่</translation>
|
||||
<translation type="vanished">กลุ่มใหม่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>กลับค่าเดิม</translation>
|
||||
<translation type="vanished">กลับค่าเดิม</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,75 +1,182 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="tr" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="tr">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>Kapat</translation>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>Yok</translation>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Yok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation type="unfinished"/>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Kapat</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Kapat</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation type="vanished">Yok</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Translations
|
||||
Name[uk]=Налаштування скорочень LxQt
|
||||
Comment[uk]=Налаштувати глобальні скорочення стільниці LxQt
|
||||
GenericName[uk]=Налаштування глобальних скорочень LxQt
|
||||
Name[uk]=Налаштування скорочень LXQt
|
||||
Comment[uk]=Налаштувати глобальні скорочення стільниці LXQt
|
||||
GenericName[uk]=Налаштування глобальних скорочень LXQt
|
||||
|
@ -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 全局快捷键配置
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="zh_CN" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="zh_CN">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>查找命令</translation>
|
||||
<translation type="vanished">查找命令</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">命令</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">快捷键</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">描述</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">无</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">关闭</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>LxQt 快捷键编辑器</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">LXQt 快捷键编辑器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>描述</translation>
|
||||
<translation type="vanished">描述</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>快捷键</translation>
|
||||
<translation type="vanished">快捷键</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>命令</translation>
|
||||
<translation type="vanished">命令</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>添加新</translation>
|
||||
<translation type="vanished">添加新</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>删除</translation>
|
||||
<translation type="vanished">删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>添加组</translation>
|
||||
<translation type="vanished">添加组</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>重置</translation>
|
||||
<translation type="vanished">重置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>关闭</translation>
|
||||
<translation type="vanished">关闭</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>无</translation>
|
||||
<translation type="vanished">无</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>添加快捷键</translation>
|
||||
<translation type="vanished">添加快捷键</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>删除</translation>
|
||||
<translation type="vanished">删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>新建组</translation>
|
||||
<translation type="vanished">新建组</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>重置更改</translation>
|
||||
<translation type="vanished">重置更改</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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全域快捷鍵設定
|
||||
|
@ -1,75 +1,241 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="zh_TW" version="2.0">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="zh_TW">
|
||||
<context>
|
||||
<name>CommandFinder</name>
|
||||
<message>
|
||||
<source>...</source>
|
||||
<translation>...</translation>
|
||||
<translation type="vanished">...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Find a command</source>
|
||||
<translation>尋找指令</translation>
|
||||
<translation type="vanished">尋找指令</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DefaultModel</name>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="49"/>
|
||||
<source>Command</source>
|
||||
<translation type="unfinished">指令</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="50"/>
|
||||
<source>DBus call</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="51"/>
|
||||
<source>Client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="141"/>
|
||||
<source>Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="144"/>
|
||||
<source>Shortcut</source>
|
||||
<translation type="unfinished">快捷鍵</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="147"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">描述</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="150"/>
|
||||
<source>Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../default_model.cpp" line="153"/>
|
||||
<source>Info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EditActionDialog</name>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="14"/>
|
||||
<source>Edit Action</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="31"/>
|
||||
<source>&Shortcut:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="74"/>
|
||||
<source>&Description:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="87"/>
|
||||
<source>&Enabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="102"/>
|
||||
<source>&Command</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="109"/>
|
||||
<source>&DBus message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="118"/>
|
||||
<source>Type:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="164"/>
|
||||
<source>Co&mmand:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="206"/>
|
||||
<source>S&ervice:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="219"/>
|
||||
<source>&Path:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="232"/>
|
||||
<source>&Interface:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../edit_action_dialog.ui" line="245"/>
|
||||
<source>&Method:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="14"/>
|
||||
<source>Global Actions Manager</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="52"/>
|
||||
<source>Add ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="62"/>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">移除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="72"/>
|
||||
<source>Modify ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="89"/>
|
||||
<source>Swap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="115"/>
|
||||
<source>Multiple actions behaviour:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="123"/>
|
||||
<source>First</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="128"/>
|
||||
<source>Last</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="133"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">無</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="138"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main_window.ui" line="176"/>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">關閉</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutConfigWindow</name>
|
||||
<message>
|
||||
<source>LxQt Shortcut Editor</source>
|
||||
<translation>LxQt快捷鍵編輯器</translation>
|
||||
<source>LXQt Shortcut Editor</source>
|
||||
<translation type="vanished">LXQt快捷鍵編輯器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation>描述</translation>
|
||||
<translation type="vanished">描述</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut</source>
|
||||
<translation>快捷鍵</translation>
|
||||
<translation type="vanished">快捷鍵</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Command</source>
|
||||
<translation>指令</translation>
|
||||
<translation type="vanished">指令</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add New</source>
|
||||
<translation>新增</translation>
|
||||
<translation type="vanished">新增</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>移除</translation>
|
||||
<translation type="vanished">移除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Group</source>
|
||||
<translation>新增群組</translation>
|
||||
<translation type="vanished">新增群組</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
<translation>重設</translation>
|
||||
<translation type="vanished">重設</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation>關閉</translation>
|
||||
<translation type="vanished">關閉</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEditor</name>
|
||||
<message>
|
||||
<source>None</source>
|
||||
<translation>無</translation>
|
||||
<translation type="vanished">無</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add Shortcut</source>
|
||||
<translation>增加快捷鍵</translation>
|
||||
<translation type="vanished">增加快捷鍵</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation>移除</translation>
|
||||
<translation type="vanished">移除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New Group</source>
|
||||
<translation>新群組</translation>
|
||||
<translation type="vanished">新群組</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset Changes</source>
|
||||
<translation>重設更改</translation>
|
||||
<translation type="vanished">重設更改</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
</TS>
|
||||
|
@ -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
|
@ -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-----
|
@ -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
|
||||
|
Loading…
Reference in new issue