Adding upstream version 0.9.0+20150901.
This commit is contained in:
parent
d20435ed18
commit
fbf63af56e
23
.gitignore
vendored
23
.gitignore
vendored
@ -1,23 +0,0 @@
|
||||
*.kdev4*
|
||||
moc_*.cxx
|
||||
qrc_*.cxx
|
||||
cmake_install.cmake
|
||||
cmake_uninstall.cmake
|
||||
Makefile
|
||||
CMakeFiles
|
||||
CMakeCache.txt
|
||||
CPackConfig.cmake
|
||||
CPackSourceConfig.cmake
|
||||
lib*.so
|
||||
lib*.so.*
|
||||
ui_*.h
|
||||
*.qm
|
||||
lxqt-appswitcher/lxqt-appswitcher
|
||||
lxqt-desktop/lxqt-desktop
|
||||
lxqt-panel/panel/lxqt-panel
|
||||
*~
|
||||
*.autosave
|
||||
*-swp
|
||||
CMakeLists.txt.user*
|
||||
/build
|
||||
nbproject/
|
@ -145,7 +145,7 @@ QT5_ADD_DBUS_INTERFACE(SRCS
|
||||
|
||||
QT5_ADD_DBUS_ADAPTOR(SRCS
|
||||
dbus/org.lxqt.SingleApplication.xml
|
||||
lxqtsingleapplication.h LxQt::SingleApplication
|
||||
lxqtsingleapplication.h LXQt::SingleApplication
|
||||
)
|
||||
|
||||
set(LXQT_QT_VERSION "5")
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
static void loadAppTranslation()
|
||||
{
|
||||
LxQt::Translator::translateApplication(QStringLiteral("@catalog_name@"));
|
||||
LXQt::Translator::translateApplication(QStringLiteral("@catalog_name@"));
|
||||
}
|
||||
|
||||
Q_COREAPP_STARTUP_FUNCTION(loadAppTranslation)
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
static void loadLibTranslation()
|
||||
{
|
||||
LxQt::Translator::translateLibrary(QStringLiteral("@catalog_name@"));
|
||||
LXQt::Translator::translateLibrary(QStringLiteral("@catalog_name@"));
|
||||
}
|
||||
|
||||
Q_COREAPP_STARTUP_FUNCTION(loadLibTranslation)
|
||||
|
@ -1,6 +1,6 @@
|
||||
#=============================================================================
|
||||
# The lxqt_translate_desktop() function was copied from the
|
||||
# LXQt LxQtTranslate.cmake
|
||||
# LXQt LXQtTranslate.cmake
|
||||
#
|
||||
# Original Author: Alexander Sokolov <sokoloff.a@gmail.com>
|
||||
#
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <XdgIcon>
|
||||
#include <QPushButton>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
ConfigDialog::ConfigDialog(const QString& title, Settings* settings, QWidget* parent) :
|
||||
QDialog(parent),
|
||||
|
@ -35,7 +35,7 @@ namespace Ui {
|
||||
class ConfigDialog;
|
||||
}
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API ConfigDialog : public QDialog
|
||||
@ -103,5 +103,5 @@ private slots:
|
||||
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTCONFIGDIALOG_H
|
||||
|
@ -17,7 +17,7 @@
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="LxQt::PageSelectWidget" name="moduleList">
|
||||
<widget class="LXQt::PageSelectWidget" name="moduleList">
|
||||
<property name="horizontalScrollBarPolicy">
|
||||
<enum>Qt::ScrollBarAlwaysOff</enum>
|
||||
</property>
|
||||
@ -50,7 +50,7 @@
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>LxQt::PageSelectWidget</class>
|
||||
<class>LXQt::PageSelectWidget</class>
|
||||
<extends>QListWidget</extends>
|
||||
<header location="global">configdialog/lxqtpageselectwidget.h</header>
|
||||
</customwidget>
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <QStyledItemDelegate>
|
||||
#include <QScrollBar>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
class PageSelectWidgetItemDelegate: public QStyledItemDelegate
|
||||
{
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "lxqtglobals.h"
|
||||
#include <QListWidget>
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API PageSelectWidget : public QListWidget
|
||||
@ -46,5 +46,5 @@ protected:
|
||||
QSize sizeHint() const;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // PAGESELECTWIDGET_H
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <XdgIcon>
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
#define COLOR_DEBUG "\033[32;2m"
|
||||
#define COLOR_WARN "\033[33;2m"
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include <QProxyStyle>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
/*! \brief LXQt wrapper around QApplication.
|
||||
@ -79,7 +79,7 @@ signals:
|
||||
#if defined(lxqtApp)
|
||||
#undef lxqtApp
|
||||
#endif
|
||||
#define lxqtApp (static_cast<LxQt::Application *>(qApp))
|
||||
#define lxqtApp (static_cast<LXQt::Application *>(qApp))
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTAPPLICATION_H
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <XdgAutoStart>
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
AutostartEntry::AutostartEntry() :
|
||||
mLocalState(StateNone), mSystem(false)
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include "lxqtglobals.h"
|
||||
#include <XdgDesktopFile>
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
/*! \brief The AutostartEntry class provides an interface for staging configuration of individual
|
||||
@ -110,5 +110,5 @@ protected:
|
||||
bool mSystem; //! true if the "system" file exists
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTAUTOSTARTENTRY_H
|
||||
|
@ -31,9 +31,9 @@
|
||||
#include <math.h>
|
||||
#include <QWidget>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
class LxQt::GridLayoutPrivate
|
||||
class LXQt::GridLayoutPrivate
|
||||
{
|
||||
public:
|
||||
GridLayoutPrivate();
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include <QLayout>
|
||||
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class GridLayoutPrivate;
|
||||
@ -233,5 +233,5 @@ private:
|
||||
|
||||
Q_DECLARE_OPERATORS_FOR_FLAGS(GridLayout::Stretch)
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTGRIDLAYOUT_H
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <QAbstractTextDocumentLayout>
|
||||
#include <QTextDocument>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
|
||||
HtmlDelegate::HtmlDelegate(const QSize iconSize, QObject* parent) :
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <QPainter>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API HtmlDelegate : public QStyledItemDelegate
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <QMessageBox>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
Notification::Notification(const QString& summary, QObject* parent) :
|
||||
QObject(parent),
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include <QStringList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class NotificationPrivate;
|
||||
@ -175,7 +175,7 @@ signals:
|
||||
* \brief Emitted when the notification is closed
|
||||
* \param reason How notification was closed
|
||||
*/
|
||||
void notificationClosed(LxQt::Notification::CloseReason reason);
|
||||
void notificationClosed(LXQt::Notification::CloseReason reason);
|
||||
|
||||
/*!
|
||||
* \brief Emitted when an action button is activated.
|
||||
@ -189,5 +189,5 @@ private:
|
||||
NotificationPrivate* const d_ptr;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTNOTIFICATION_H
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include "lxqtnotification.h"
|
||||
#include "notifications_interface.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class NotificationPrivate : public QObject
|
||||
@ -63,5 +63,5 @@ private:
|
||||
Q_DECLARE_PUBLIC(Notification)
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTNOTIFICATION_P_H
|
||||
|
@ -35,7 +35,7 @@
|
||||
#include <QLibrary>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
/************************************************
|
||||
|
||||
@ -75,7 +75,7 @@ QLibrary* PluginInfo::loadLibrary(const QString& libDir) const
|
||||
QString baseName, path;
|
||||
QFileInfo fi = QFileInfo(fileName());
|
||||
path = fi.canonicalPath();
|
||||
baseName = value("X-LxQt-Library", fi.completeBaseName()).toString();
|
||||
baseName = value("X-LXQt-Library", fi.completeBaseName()).toString();
|
||||
|
||||
QString soPath = QDir(libDir).filePath(QString("lib%2.so").arg(baseName));
|
||||
QLibrary* library = new QLibrary(soPath);
|
||||
@ -139,7 +139,7 @@ PluginInfoList PluginInfo::search(const QString& desktopFilesDir, const QString&
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo &pluginInfo)
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo &pluginInfo)
|
||||
{
|
||||
dbg.nospace() << QString("%1").arg(pluginInfo.id());
|
||||
return dbg.space();
|
||||
@ -149,7 +149,7 @@ QDebug operator<<(QDebug dbg, const LxQt::PluginInfo &pluginInfo)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo * const pluginInfo)
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo * const pluginInfo)
|
||||
{
|
||||
return operator<<(dbg, *pluginInfo);
|
||||
}
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
class QLibrary;
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
/*!
|
||||
@ -52,7 +52,7 @@ lxqtpanel_clock2.desktop file
|
||||
|
||||
[Desktop Entry]
|
||||
Type=Service
|
||||
ServiceTypes=LxQtPanel/Plugin
|
||||
ServiceTypes=LXQtPanel/Plugin
|
||||
Name=Clock
|
||||
Comment=Clock and calendar
|
||||
|
||||
@ -89,7 +89,7 @@ public:
|
||||
|
||||
/*! Returns a list of PluginInfo objects for the matched files in the directories.
|
||||
@param desktopFilesDirs - scanned directories names.
|
||||
@param serviceType - type of the plugin, for example "LxQtPanel/Plugin".
|
||||
@param serviceType - type of the plugin, for example "LXQtPanel/Plugin".
|
||||
@param nameFilter - wildcard filter that understands * and ? wildcards.
|
||||
|
||||
If the same filename is located under multiple directories only the first file should be used.
|
||||
@ -105,12 +105,12 @@ private:
|
||||
|
||||
typedef QList<PluginInfo> PluginInfoList;
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo& pi);
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfo* const pi);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo& pi);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfo* const pi);
|
||||
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfoList& list);
|
||||
QDebug operator<<(QDebug dbg, const LxQt::PluginInfoList* const pluginInfoList);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfoList& list);
|
||||
QDebug operator<<(QDebug dbg, const LXQt::PluginInfoList* const pluginInfoList);
|
||||
|
||||
#endif // LXQTPLUGININFO_H
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <QtAlgorithms>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
Power::Power(QObject *parent) :
|
||||
QObject(parent)
|
||||
@ -41,7 +41,7 @@ Power::Power(QObject *parent) :
|
||||
mProviders.append(new UPowerProvider(this));
|
||||
mProviders.append(new ConsoleKitProvider(this));
|
||||
mProviders.append(new LxSessionProvider(this));
|
||||
mProviders.append(new LxQtProvider(this));
|
||||
mProviders.append(new LXQtProvider(this));
|
||||
}
|
||||
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <QList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
|
||||
@ -103,5 +103,5 @@ private:
|
||||
QList<PowerProvider*> mProviders;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTPOWER_H
|
||||
|
@ -47,7 +47,7 @@
|
||||
#define SYSTEMD_INTERFACE "org.freedesktop.login1.Manager"
|
||||
|
||||
#define LXQT_SERVICE "org.lxqt.session"
|
||||
#define LXQT_PATH "/LxQtSession"
|
||||
#define LXQT_PATH "/LXQtSession"
|
||||
#define LXQT_INTERFACE "org.lxqt.session"
|
||||
|
||||
#define LXSESSION_SERVICE "org.lxde.SessionManager"
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
#define PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties"
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
/************************************************
|
||||
Helper func
|
||||
@ -183,7 +183,7 @@ bool dbusGetProperty(const QString &service,
|
||||
if (!dbus.isValid())
|
||||
{
|
||||
qWarning() << "dbusGetProperty: QDBusInterface is invalid" << service << path << interface << property;
|
||||
// Notification::notify(QObject::tr("LxQt Power Manager"),
|
||||
// Notification::notify(QObject::tr("LXQt Power Manager"),
|
||||
// "lxqt-logo.png",
|
||||
// QObject::tr("Power Manager Error"),
|
||||
// QObject::tr("QDBusInterface is invalid")+ "\n\n" + service +" " + path +" " + interface +" " + property);
|
||||
@ -196,7 +196,7 @@ bool dbusGetProperty(const QString &service,
|
||||
if (!msg.errorName().isEmpty())
|
||||
{
|
||||
printDBusMsg(msg);
|
||||
// Notification::notify(QObject::tr("LxQt Power Manager"),
|
||||
// Notification::notify(QObject::tr("LXQt Power Manager"),
|
||||
// "lxqt-logo.png",
|
||||
// QObject::tr("Power Manager Error (Get Property)"),
|
||||
// msg.errorName() + "\n\n" + msg.errorMessage());
|
||||
@ -473,20 +473,20 @@ bool SystemdProvider::doAction(Power::Action action)
|
||||
|
||||
|
||||
/************************************************
|
||||
LxQtProvider
|
||||
LXQtProvider
|
||||
************************************************/
|
||||
LxQtProvider::LxQtProvider(QObject *parent):
|
||||
LXQtProvider::LXQtProvider(QObject *parent):
|
||||
PowerProvider(parent)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
LxQtProvider::~LxQtProvider()
|
||||
LXQtProvider::~LXQtProvider()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
bool LxQtProvider::canAction(Power::Action action) const
|
||||
bool LXQtProvider::canAction(Power::Action action) const
|
||||
{
|
||||
switch (action)
|
||||
{
|
||||
@ -501,7 +501,7 @@ bool LxQtProvider::canAction(Power::Action action) const
|
||||
}
|
||||
|
||||
|
||||
bool LxQtProvider::doAction(Power::Action action)
|
||||
bool LXQtProvider::doAction(Power::Action action)
|
||||
{
|
||||
QString command;
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "lxqtpower.h"
|
||||
#include <QProcess> // for PID_T
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
|
||||
@ -101,12 +101,12 @@ public slots:
|
||||
};
|
||||
|
||||
|
||||
class LxQtProvider: public PowerProvider
|
||||
class LXQtProvider: public PowerProvider
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
LxQtProvider(QObject *parent = 0);
|
||||
~LxQtProvider();
|
||||
LXQtProvider(QObject *parent = 0);
|
||||
~LXQtProvider();
|
||||
bool canAction(Power::Action action) const;
|
||||
|
||||
public slots:
|
||||
@ -155,5 +155,5 @@ private:
|
||||
Settings mSettings;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTPOWER_PROVIDERS_H
|
||||
|
@ -37,7 +37,7 @@
|
||||
#include "lxqtsettings.h"
|
||||
#include <XdgIcon>
|
||||
|
||||
namespace LxQt {
|
||||
namespace LXQt {
|
||||
|
||||
class LXQT_API MessageBox: public QMessageBox
|
||||
{
|
||||
@ -67,7 +67,7 @@ public:
|
||||
|
||||
static void warning(const QString& title, const QString& text)
|
||||
{
|
||||
QMessageBox::warning(parentWidget(), tr("LxQt Power Manager Error"), tr("Hibernate failed."));
|
||||
QMessageBox::warning(parentWidget(), tr("LXQt Power Manager Error"), tr("Hibernate failed."));
|
||||
}
|
||||
|
||||
|
||||
@ -149,7 +149,7 @@ QList<QAction*> PowerManager::availableActions()
|
||||
void PowerManager::suspend()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Suspend"),
|
||||
MessageBox::question(tr("LXQt Session Suspend"),
|
||||
tr("Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.")))
|
||||
{
|
||||
m_power->suspend();
|
||||
@ -159,7 +159,7 @@ void PowerManager::suspend()
|
||||
void PowerManager::hibernate()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Hibernate"),
|
||||
MessageBox::question(tr("LXQt Session Hibernate"),
|
||||
tr("Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.")))
|
||||
{
|
||||
m_power->hibernate();
|
||||
@ -169,7 +169,7 @@ void PowerManager::hibernate()
|
||||
void PowerManager::reboot()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Reboot"),
|
||||
MessageBox::question(tr("LXQt Session Reboot"),
|
||||
tr("Do you want to really restart your computer? All unsaved work will be lost...")))
|
||||
{
|
||||
m_power->reboot();
|
||||
@ -179,7 +179,7 @@ void PowerManager::reboot()
|
||||
void PowerManager::shutdown()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Shutdown"),
|
||||
MessageBox::question(tr("LXQt Session Shutdown"),
|
||||
tr("Do you want to really switch off your computer? All unsaved work will be lost...")))
|
||||
{
|
||||
m_power->shutdown();
|
||||
@ -189,7 +189,7 @@ void PowerManager::shutdown()
|
||||
void PowerManager::logout()
|
||||
{
|
||||
if (m_skipWarning ||
|
||||
MessageBox::question(tr("LxQt Session Logout"),
|
||||
MessageBox::question(tr("LXQt Session Logout"),
|
||||
tr("Do you want to really logout? All unsaved work will be lost...")))
|
||||
{
|
||||
m_power->logout();
|
||||
@ -198,12 +198,12 @@ void PowerManager::logout()
|
||||
|
||||
void PowerManager::hibernateFailed()
|
||||
{
|
||||
MessageBox::warning(tr("LxQt Power Manager Error"), tr("Hibernate failed."));
|
||||
MessageBox::warning(tr("LXQt Power Manager Error"), tr("Hibernate failed."));
|
||||
}
|
||||
|
||||
void PowerManager::suspendFailed()
|
||||
{
|
||||
MessageBox::warning(tr("LxQt Power Manager Error"), tr("Suspend failed."));
|
||||
MessageBox::warning(tr("LXQt Power Manager Error"), tr("Suspend failed."));
|
||||
}
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include <QAction>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
class Power;
|
||||
|
||||
@ -60,7 +60,7 @@ public:
|
||||
bool skipWarning() const { return m_skipWarning; }
|
||||
|
||||
private:
|
||||
LxQt::Power * m_power;
|
||||
LXQt::Power * m_power;
|
||||
bool m_skipWarning;
|
||||
|
||||
private slots:
|
||||
@ -68,6 +68,6 @@ private slots:
|
||||
void suspendFailed();
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
|
||||
#endif // LXQTPOWERMANAGER_H
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <QDir>
|
||||
#include <QFileInfo>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
LXQT_API bool ProgramFinder::programExists(const QString& command)
|
||||
{
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <QStringList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
namespace ProgramFinder
|
||||
@ -57,5 +57,5 @@ namespace ProgramFinder
|
||||
LXQT_API QString programName(const QString& command);
|
||||
}
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTPROGRAMFINDER_H
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
#include <QResizeEvent>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
RotatedWidget::RotatedWidget(QWidget &content, QWidget *parent, Qt::WindowFlags f)
|
||||
: QWidget(parent, f)
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <QWidget>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API RotatedWidget: public QWidget
|
||||
@ -122,5 +122,5 @@ private:
|
||||
bool mTransferLeaveEvent;
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTROTATEDWIDGET_H
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <QMessageBox>
|
||||
#include <QAction>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
ScreenSaver::ScreenSaver(QObject * parent)
|
||||
: QObject(parent)
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <QProcess>
|
||||
#include <QAction>
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class LXQT_API ScreenSaver : public QObject
|
||||
@ -59,6 +59,6 @@ private slots:
|
||||
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif
|
||||
|
||||
|
@ -39,9 +39,9 @@
|
||||
#include <XdgIcon>
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
class LxQt::SettingsPrivate
|
||||
class LXQt::SettingsPrivate
|
||||
{
|
||||
public:
|
||||
SettingsPrivate(Settings* parent):
|
||||
@ -60,11 +60,11 @@ private:
|
||||
};
|
||||
|
||||
|
||||
LxQtTheme* LxQtTheme::mInstance = 0;
|
||||
LXQtTheme* LXQtTheme::mInstance = 0;
|
||||
|
||||
class LxQt::LxQtThemeData: public QSharedData {
|
||||
class LXQt::LXQtThemeData: public QSharedData {
|
||||
public:
|
||||
LxQtThemeData(): mValid(false) {}
|
||||
LXQtThemeData(): mValid(false) {}
|
||||
QString loadQss(const QString& qssFile) const;
|
||||
QString findTheme(const QString &themeName);
|
||||
|
||||
@ -76,7 +76,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class LxQt::GlobalSettingsPrivate
|
||||
class LXQt::GlobalSettingsPrivate
|
||||
{
|
||||
public:
|
||||
GlobalSettingsPrivate(GlobalSettings *parent):
|
||||
@ -88,7 +88,7 @@ public:
|
||||
|
||||
GlobalSettings *mParent;
|
||||
QString mIconTheme;
|
||||
QString mLxQtTheme;
|
||||
QString mLXQtTheme;
|
||||
qlonglong mThemeUpdated;
|
||||
|
||||
};
|
||||
@ -337,8 +337,8 @@ void Settings::setLocalizedValue(const QString &key, const QVariant &value)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::LxQtTheme():
|
||||
d(new LxQtThemeData)
|
||||
LXQtTheme::LXQtTheme():
|
||||
d(new LXQtThemeData)
|
||||
{
|
||||
}
|
||||
|
||||
@ -346,8 +346,8 @@ LxQtTheme::LxQtTheme():
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::LxQtTheme(const QString &path):
|
||||
d(new LxQtThemeData)
|
||||
LXQtTheme::LXQtTheme(const QString &path):
|
||||
d(new LXQtThemeData)
|
||||
{
|
||||
if (path.isEmpty())
|
||||
return;
|
||||
@ -374,7 +374,7 @@ LxQtTheme::LxQtTheme(const QString &path):
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtThemeData::findTheme(const QString &themeName)
|
||||
QString LXQtThemeData::findTheme(const QString &themeName)
|
||||
{
|
||||
if (themeName.isEmpty())
|
||||
return "";
|
||||
@ -399,7 +399,7 @@ QString LxQtThemeData::findTheme(const QString &themeName)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::LxQtTheme(const LxQtTheme &other):
|
||||
LXQtTheme::LXQtTheme(const LXQtTheme &other):
|
||||
d(other.d)
|
||||
{
|
||||
}
|
||||
@ -408,7 +408,7 @@ LxQtTheme::LxQtTheme(const LxQtTheme &other):
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme::~LxQtTheme()
|
||||
LXQtTheme::~LXQtTheme()
|
||||
{
|
||||
}
|
||||
|
||||
@ -416,7 +416,7 @@ LxQtTheme::~LxQtTheme()
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
LxQtTheme& LxQtTheme::operator=(const LxQtTheme &other)
|
||||
LXQtTheme& LXQtTheme::operator=(const LXQtTheme &other)
|
||||
{
|
||||
d = other.d;
|
||||
return *this;
|
||||
@ -426,7 +426,7 @@ LxQtTheme& LxQtTheme::operator=(const LxQtTheme &other)
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
bool LxQtTheme::isValid() const
|
||||
bool LXQtTheme::isValid() const
|
||||
{
|
||||
return d->mValid;
|
||||
}
|
||||
@ -435,7 +435,7 @@ bool LxQtTheme::isValid() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::name() const
|
||||
QString LXQtTheme::name() const
|
||||
{
|
||||
return d->mName;
|
||||
}
|
||||
@ -443,7 +443,7 @@ QString LxQtTheme::name() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::path() const
|
||||
QString LXQtTheme::path() const
|
||||
{
|
||||
return d->mPath;
|
||||
}
|
||||
@ -452,7 +452,7 @@ QString LxQtTheme::path() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::previewImage() const
|
||||
QString LXQtTheme::previewImage() const
|
||||
{
|
||||
return d->mPreviewImg;
|
||||
}
|
||||
@ -461,7 +461,7 @@ QString LxQtTheme::previewImage() const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::qss(const QString& module) const
|
||||
QString LXQtTheme::qss(const QString& module) const
|
||||
{
|
||||
QString styleSheet = d->loadQss(QStringLiteral("%1/%2.qss").arg(d->mPath, module));
|
||||
|
||||
@ -477,7 +477,7 @@ QString LxQtTheme::qss(const QString& module) const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtThemeData::loadQss(const QString& qssFile) const
|
||||
QString LXQtThemeData::loadQss(const QString& qssFile) const
|
||||
{
|
||||
QFile f(qssFile);
|
||||
if (! f.open(QIODevice::ReadOnly | QIODevice::Text))
|
||||
@ -502,7 +502,7 @@ QString LxQtThemeData::loadQss(const QString& qssFile) const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QString LxQtTheme::desktopBackground(int screen) const
|
||||
QString LXQtTheme::desktopBackground(int screen) const
|
||||
{
|
||||
QString wallpaperCfgFileName = QString("%1/wallpaper.cfg").arg(d->mPath);
|
||||
|
||||
@ -530,13 +530,13 @@ QString LxQtTheme::desktopBackground(int screen) const
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
const LxQtTheme &LxQtTheme::currentTheme()
|
||||
const LXQtTheme &LXQtTheme::currentTheme()
|
||||
{
|
||||
static LxQtTheme theme;
|
||||
static LXQtTheme theme;
|
||||
QString name = Settings::globalSettings()->value("theme").toString();
|
||||
if (theme.name() != name)
|
||||
{
|
||||
theme = LxQtTheme(name);
|
||||
theme = LXQtTheme(name);
|
||||
}
|
||||
return theme;
|
||||
}
|
||||
@ -545,9 +545,9 @@ const LxQtTheme &LxQtTheme::currentTheme()
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QList<LxQtTheme> LxQtTheme::allThemes()
|
||||
QList<LXQtTheme> LXQtTheme::allThemes()
|
||||
{
|
||||
QList<LxQtTheme> ret;
|
||||
QList<LXQtTheme> ret;
|
||||
QSet<QString> processed;
|
||||
|
||||
QStringList paths;
|
||||
@ -565,7 +565,7 @@ QList<LxQtTheme> LxQtTheme::allThemes()
|
||||
QDir(dir.absoluteFilePath()).exists("lxqt-panel.qss"))
|
||||
{
|
||||
processed << dir.fileName();
|
||||
ret << LxQtTheme(dir.absoluteFilePath());
|
||||
ret << LXQtTheme(dir.absoluteFilePath());
|
||||
}
|
||||
|
||||
}
|
||||
@ -682,9 +682,9 @@ void GlobalSettings::fileChanged()
|
||||
|
||||
QString rt = value("theme").toString();
|
||||
qlonglong themeUpdated = value("__theme_updated__").toLongLong();
|
||||
if ((d->mLxQtTheme != rt) || (d->mThemeUpdated != themeUpdated))
|
||||
if ((d->mLXQtTheme != rt) || (d->mThemeUpdated != themeUpdated))
|
||||
{
|
||||
d->mLxQtTheme = rt;
|
||||
d->mLXQtTheme = rt;
|
||||
emit lxqtThemeChanged();
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
|
||||
class QEvent;
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
|
||||
class SettingsPrivate;
|
||||
@ -100,25 +100,25 @@ private:
|
||||
};
|
||||
|
||||
|
||||
class LxQtThemeData;
|
||||
class LXQtThemeData;
|
||||
|
||||
/*! \brief QSS theme handling */
|
||||
class LXQT_API LxQtTheme
|
||||
class LXQT_API LXQtTheme
|
||||
{
|
||||
public:
|
||||
/// Constructs a null theme.
|
||||
LxQtTheme();
|
||||
LXQtTheme();
|
||||
|
||||
/*! Constructs an theme from the dir with the given path. If path not absolute
|
||||
(i.e. the theme name only) the relevant dir must be found relative to the
|
||||
$XDG_DATA_HOME + $XDG_DATA_DIRS directories. */
|
||||
LxQtTheme(const QString &path);
|
||||
LXQtTheme(const QString &path);
|
||||
|
||||
/// Constructs a copy of other. This is very fast.
|
||||
LxQtTheme(const LxQtTheme &other);
|
||||
LXQtTheme(const LXQtTheme &other);
|
||||
|
||||
LxQtTheme& operator=(const LxQtTheme &other);
|
||||
~LxQtTheme();
|
||||
LXQtTheme& operator=(const LXQtTheme &other);
|
||||
~LXQtTheme();
|
||||
|
||||
/// Returns the name of the theme.
|
||||
QString name() const;
|
||||
@ -145,22 +145,22 @@ public:
|
||||
QString desktopBackground(int screen=-1) const;
|
||||
|
||||
/// Returns the current lxqt theme.
|
||||
static const LxQtTheme ¤tTheme();
|
||||
static const LXQtTheme ¤tTheme();
|
||||
|
||||
/// Returns the all themes found in the system.
|
||||
static QList<LxQtTheme> allThemes();
|
||||
static QList<LXQtTheme> allThemes();
|
||||
|
||||
private:
|
||||
static LxQtTheme* mInstance;
|
||||
QSharedDataPointer<LxQtThemeData> d;
|
||||
static LXQtTheme* mInstance;
|
||||
QSharedDataPointer<LXQtThemeData> d;
|
||||
};
|
||||
|
||||
/*!
|
||||
A global pointer referring to the unique LxQtTheme object.
|
||||
It is equivalent to the pointer returned by the LxQtTheme::instance() function.
|
||||
A global pointer referring to the unique LXQtTheme object.
|
||||
It is equivalent to the pointer returned by the LXQtTheme::instance() function.
|
||||
Only one theme object can be created. !*/
|
||||
|
||||
#define lxqtTheme LxQtTheme::currentTheme()
|
||||
#define lxqtTheme LXQtTheme::currentTheme()
|
||||
|
||||
|
||||
class LXQT_API SettingsCache
|
||||
@ -202,5 +202,5 @@ private:
|
||||
Q_DECLARE_PRIVATE(GlobalSettings)
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTSETTINGS_H
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <QWidget>
|
||||
#include <QDebug>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
SingleApplication::SingleApplication(int &argc, char **argv, StartOptions options)
|
||||
: Application(argc, argv),
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
class QWidget;
|
||||
|
||||
namespace LxQt {
|
||||
namespace LXQt {
|
||||
|
||||
/*! \class SingleApplication
|
||||
* \brief The SingleApplication class provides an single instance Application.
|
||||
@ -45,14 +45,14 @@ namespace LxQt {
|
||||
* doesn't the second instance will quietly exit without activating the first
|
||||
* instance window. In any case only one instance is allowed.
|
||||
*
|
||||
* This classes depends uses D-Bus and KF5::WindowSystem
|
||||
* These classes depend on D-Bus and KF5::WindowSystem
|
||||
*
|
||||
* \code
|
||||
*
|
||||
* // Original code
|
||||
* int main(int argc, char **argv)
|
||||
* {
|
||||
* LxQt::Application app(argc, argv);
|
||||
* LXQt::Application app(argc, argv);
|
||||
*
|
||||
* MainWidget w;
|
||||
* w.show();
|
||||
@ -60,10 +60,10 @@ namespace LxQt {
|
||||
* return app.exec();
|
||||
* }
|
||||
*
|
||||
* // SingleApplication code
|
||||
* // Using the library
|
||||
* int main(int argc, char **argv)
|
||||
* {
|
||||
* LxQt::SingleApplication app(argc, argv);
|
||||
* LXQt::SingleApplication app(argc, argv);
|
||||
*
|
||||
* MainWidget w;
|
||||
* app.setActivationWindow(&w);
|
||||
@ -98,12 +98,12 @@ public:
|
||||
* It's the default
|
||||
*/
|
||||
ExitOnDBusFailure,
|
||||
/** Don't exit if the connection to the D-Bus session bud fails.*/
|
||||
/** Don't exit if the connection to the D-Bus session bus fails.*/
|
||||
NoExitOnDBusFailure
|
||||
};
|
||||
|
||||
/*!
|
||||
* \brief Construct a LxQt SingleApplication object.
|
||||
* \brief Construct a LXQt SingleApplication object.
|
||||
* \param argc standard argc as in QApplication
|
||||
* \param argv standard argv as in QApplication
|
||||
* \param options Control the on D-Bus failure application behaviour
|
||||
@ -151,8 +151,8 @@ private:
|
||||
#if defined(lxqtSingleApp)
|
||||
#undef lxqtSingleApp
|
||||
#endif
|
||||
#define lxqtSingleApp (static_cast<LxQt::SingleApplication *>(qApp))
|
||||
#define lxqtSingleApp (static_cast<LXQt::SingleApplication *>(qApp))
|
||||
|
||||
}; // namespace LxQt
|
||||
}; // namespace LXQt
|
||||
|
||||
#endif // LXQTSINGLEAPPLICATION_H
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#include <XdgDirs>
|
||||
|
||||
using namespace LxQt;
|
||||
using namespace LXQt;
|
||||
|
||||
bool translate(const QString &name, const QString &owner = QString());
|
||||
/************************************************
|
||||
@ -35,7 +35,7 @@ QStringList *getSearchPaths()
|
||||
/************************************************
|
||||
|
||||
************************************************/
|
||||
QStringList LxQt::Translator::translationSearchPaths()
|
||||
QStringList LXQt::Translator::translationSearchPaths()
|
||||
{
|
||||
return *(getSearchPaths());
|
||||
}
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include <QStringList>
|
||||
#include "lxqtglobals.h"
|
||||
|
||||
namespace LxQt
|
||||
namespace LXQt
|
||||
{
|
||||
/**
|
||||
The Translator class provides internationalization support for application and librarioes.
|
||||
@ -68,5 +68,5 @@ public:
|
||||
static bool translatePlugin(const QString &pluginName, const QString& type);
|
||||
};
|
||||
|
||||
} // namespace LxQt
|
||||
} // namespace LXQt
|
||||
#endif // LXQTTRANSLATOR_H
|
||||
|
@ -10,10 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -23,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -31,7 +31,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -59,7 +59,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -69,7 +69,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -79,7 +79,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -110,7 +110,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -125,7 +125,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">نعم</translation>
|
||||
@ -40,10 +40,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">خطأٌ في إدارة الطَّاقة لنظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -53,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -61,7 +61,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>وضع جلسة نظام ريزر في حالة تعليق</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>وضع جلسة نظام ريزر في حالة سبات</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -109,7 +109,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>إعادة إقلاع جلسة نظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -119,7 +119,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>إطفاء نظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -129,7 +129,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>الخروج من جلسة نظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -140,7 +140,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>خطأٌ في إدارة الطَّاقة لنظام ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -155,7 +155,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">مسح</translation>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Verze: %1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LxQt Desktop - Technické informace</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LXQt Desktop - Technické informace</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,10 +130,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LxQtu</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LxQtu</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LxQtu znovu</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LXQtu znovu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LxQtu</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LxQtu</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,7 +230,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Smazat</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">O prostředí LxQt</translation>
|
||||
<translation type="vanished">O prostředí LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Verze: %1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LxQt Desktop - Technické informace</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Nástroje LXQt Desktop - Technické informace</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,10 +130,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LxQtu</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Pozastavení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LxQtu</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Zazimování sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LxQtu znovu</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Spuštění sezení LXQtu znovu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LxQtu</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Vypnutí sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LxQtu</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odhlášení sezení LXQtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,7 +230,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Chyba ve správě energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Smazat</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">O prostředí LxQt</translation>
|
||||
<translation type="vanished">O prostředí LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -10,10 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -23,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -31,7 +31,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -59,7 +59,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -69,7 +69,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -79,7 +79,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -110,7 +110,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -125,7 +125,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Version: %1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">Nej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt Desktop Værktøjskasse - Teknisk Information</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt Desktop Værktøjskasse - Teknisk Information</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Strømstyringsfejl</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Strømstyringsfejl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt Session Slumre</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Session Slumre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt Session Dvale</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Session Dvale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt Session Genstart</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Session Genstart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt Session Luk Ned</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Session Luk Ned</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt Session Log Ud</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Session Log Ud</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Strømstyringsfejl</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Strømstyringsfejl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Rens</translation>
|
||||
|
@ -10,10 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Fehler der LXQt-Energieverwaltung</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -23,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -31,7 +31,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -59,7 +59,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Bereitschaft</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -69,7 +69,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Tiefschlaf</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -79,7 +79,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Neustart</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Herunterfahren</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Abmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -110,7 +110,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Fehler der LXQt-Energieverwaltung</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -125,7 +125,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="el_GR">
|
||||
<TS version="2.1" language="el">
|
||||
<context>
|
||||
<name>AddPluginDialog</name>
|
||||
<message>
|
||||
<source>Add plugins</source>
|
||||
<translation type="obsolete">Προσθήκη επεκτάσεων</translation>
|
||||
<translation type="obsolete">Προσθήκη πρόσθετων</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search:</source>
|
||||
<translation type="vanished">Αναζήτηση:</translation>
|
||||
<translation>Αναζήτηση:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add plugin</source>
|
||||
@ -17,7 +17,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="vanished">Κλείσιμο</translation>
|
||||
<translation>Κλείσιμο</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -29,35 +29,35 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Έκδοση: %1</translation>
|
||||
<translation>Έκδοση: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Advanced, easy-to-use, and fast desktop environment based on Qt technologies.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="vanished">Προηγμένη, εύκολη στη χρήση και γρήγορη επιφάνεια εργασίας με βάση τις τεχνολογίες Qt.</translation>
|
||||
<translation>Προηγμένη, εύκολη στη χρήση και γρήγορη επιφάνεια εργασίας με βάση τις τεχνολογίες Qt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="vanished">Πνευματικά δικαιώματα: %1-%2 %3</translation>
|
||||
<translation>Πνευματικά δικαιώματα: %1-%2 %3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Homepage: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="vanished">Αρχική σελίδα: %1</translation>
|
||||
<translation>Ιστοσελίδα: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>License: %1</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="vanished">Άδεια χρήσης: %1</translation>
|
||||
<translation>Άδεια χρήσης: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="vanished">LXQt έχει μεταφραστεί σε πολλές γλώσσες χάρη στο έργο των μεταφραστικών ομάδων σε όλο τον κόσμο.</translation>
|
||||
<translation>Το LXQt έχει μεταφραστεί σε πολλές γλώσσες χάρη στο έργο των μεταφραστικών ομάδων ανά την υφήλιο.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -68,7 +68,7 @@
|
||||
<translation type="obsolete">Όχι</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Επιφάνεια εργασίας LXQt - Τεχνικές πληροφορίες</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -130,32 +130,32 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Σφάλμα διαχείρισης ενέργειας LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Σφάλμα διαχείρισης ενέργειας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation type="unfinished">Αποτυχία αδρανοποίησης.</translation>
|
||||
<translation>Αποτυχία νάρκωσης.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
<translation>Εφεδρικές ειδοποιήσεις</translation>
|
||||
<translation>Ανακατεύθυνση ειδοποιήσεων</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
<translation>Αδρανοποίηση</translation>
|
||||
<translation>Νάρκη</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="119"/>
|
||||
@ -179,28 +179,28 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Αναστολή συνεδρίας LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Αναστολή της συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
<source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source>
|
||||
<translation>Θέλετε πραγματικά να γίνει αναστολή του υπολογιστή;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος δε διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
<translation>Θέλετε πραγματικά να γίνει αναστολή του υπολογιστή;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος δεν διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Κατάσταση αδρανοποίησης LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Νάρκωση της συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
<source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source>
|
||||
<translation>Θέλετε πραγματικά να γίνει αδρανοποίηση του υπολογιστή;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
<translation>Θέλετε πραγματικά να τεθεί σε νάρκη ο υπολογιστής;<p>Θέτει τον υπολογιστή σε κατάσταση χαμηλής κατανάλωσης. Η κατάσταση του συστήματος διατηρείται εάν διακοπεί η παροχή ρεύματος.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Επανεκκίνηση συνεδρίας LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Επανεκκίνηση συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Τερματισμός συνεδρίας LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Τερματισμός συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Αποσύνδεση συνεδρίας LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Αποσύνδεση της συνεδρίας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,13 +230,13 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Σφάλμα διαχείρισης ενέργειας LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Σφάλμα διαχείρισης της ενέργειας LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<source>Hibernate failed.</source>
|
||||
<translation>Αποτυχία αδρανοποίησης.</translation>
|
||||
<translation>Αποτυχία νάρκωσης.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -260,12 +260,12 @@
|
||||
<location filename="../lxqtscreensaver.cpp" line="114"/>
|
||||
<location filename="../lxqtscreensaver.cpp" line="123"/>
|
||||
<source>Screen Saver Activation Error</source>
|
||||
<translation>Σφάλμα ενεργοποίησης προστασίας οθόνης</translation>
|
||||
<translation>Σφάλμα ενεργοποίησης της προστασίας οθόνης</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="71"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started due its crash.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία εκκίνησης προστασίας οθόνης xdg λόγω κατάρευσης.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία εκκίνησης της προστασίας οθόνης xdg λόγω κατάρρευσης.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="79"/>
|
||||
@ -275,12 +275,12 @@
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="87"/>
|
||||
<source>An error occurred starting screensaver. xdg-screensaver cannot be started.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία έναρξης προστασίας οθόνης xdg.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Αδυναμία έναρξης της προστασίας οθόνης xdg.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="99"/>
|
||||
<source>An error occurred starting screensaver. Syntax error in xdg-screensaver arguments.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Σφάλμα σύνταξης παραμέτρων προστασίας οθόνης xdg.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασίας οθόνης. Σφάλμα σύνταξης των παραμέτρων της προστασίας οθόνης xdg.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
@ -290,7 +290,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασία οθόνης. Αποτυχία ενέργειας "ενεργοποίηση". Διασφαλίστε ότι η προστασία οθόνης είναι εγκατεστημένη και ότι εκτελείται.</translation>
|
||||
<translation>Προκλήθηκε ένα σφάλμα κατά την έναρξη της προστασία οθόνης. Αποτυχία ενέργειας «ενεργοποίηση». Διασφαλίστε ότι η προστασία οθόνης είναι εγκατεστημένη και ότι εκτελείται.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
@ -299,10 +299,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Εκκαθάριση</translation>
|
||||
<translation type="obsolete">Καθαρισμός</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>None</source>
|
||||
@ -334,32 +334,32 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Σχετικά με το LxQt</translation>
|
||||
<translation> Σχετικά με το LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
<comment>About dialog, Tab title </comment>
|
||||
<translation type="vanished">Σχετικά</translation>
|
||||
<translation>Σχετικά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Authors</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="vanished">Δημιουργοί</translation>
|
||||
<translation>Συγγραφείς</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Thanks</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="vanished">Ευχαριστίες</translation>
|
||||
<translation>Ευχαριστίες</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Translations</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="vanished">Μεταφράσεις</translation>
|
||||
<translation>Μεταφράσεις</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Technical Info</source>
|
||||
<comment>About dialog, Tab title</comment>
|
||||
<translation type="vanished">Τεχνικές πληροφορίες</translation>
|
||||
<translation>Τεχνικές πληροφορίες</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Jes</translation>
|
||||
@ -40,10 +40,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -53,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -61,7 +61,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -109,7 +109,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -119,7 +119,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -129,7 +129,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -140,7 +140,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -155,7 +155,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Vakigi</translation>
|
||||
@ -244,7 +244,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished"> Pri LxQto</translation>
|
||||
<translation type="vanished"> Pri LXQto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Versión %1</translation>
|
||||
@ -68,7 +68,7 @@
|
||||
<translation type="obsolete">No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Caja de herramientas del Escritorio LXQt - Información técnica</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error del gestor de energía de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error del gestor de energía de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspender sesión LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspender sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernar la sesión LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reiniciar la sesión LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reiniciar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Apagar la sesión LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Apagar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Cerrar la sesión LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Cerrar la sesión LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Error del gestor de energía de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Error del gestor de energía de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpiar</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Acerca de LxQt</translation>
|
||||
<translation type="vanished">Acerca de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Version: %1</translation>
|
||||
@ -68,7 +68,7 @@
|
||||
<translation type="obsolete">No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Utilidad de Escritorio LXQt - Informacion</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error en Gestion de energia de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Error en Gestion de energia de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspension del sistema por LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspension del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernacion del sistema por LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernacion del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reinicio del sistema por LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reinicio del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Apagado del sistema por LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Apagado del sistema por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Cierre de la sesion por LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Cierre de la sesion por LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Error en Gestion de energia de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Error en Gestion de energia de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpiar</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Acerca de LxQt</translation>
|
||||
<translation type="vanished">Acerca de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Bertsioa: %1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">Ez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt mahaigainaren tresna-jokoa - Informazio teknikoa</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt mahaigainaren tresna-jokoa - Informazio teknikoa</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt energia-kudeatzailearen errorea</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt energia-kudeatzailearen errorea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt saioa eseki</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt saioa eseki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt saioa hibernatu</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt saioa hibernatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt saioa berrabiarazi</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt saioa berrabiarazi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt saioa itzali</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt saioa itzali</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt saioa amaitu</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt saioa amaitu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt energia-kudeatzailearen errorea</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt energia-kudeatzailearen errorea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Garbitu</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">LxQt-i buruz</translation>
|
||||
<translation type="vanished">LXQt-i buruz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Versio: %1</translation>
|
||||
@ -72,11 +72,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQtin virranhallintavirhe</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQtin virranhallintavirhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -85,7 +85,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -93,7 +93,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -121,7 +121,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -131,7 +131,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -141,7 +141,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -151,8 +151,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt-istunnon sammutus</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt-istunnon sammutus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -161,8 +161,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt-istunnon uloskirjaus</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt-istunnon uloskirjaus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -172,8 +172,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQtin virranhallintavirhe</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQtin virranhallintavirhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -187,7 +187,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -241,7 +241,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Tyhjennä</translation>
|
||||
@ -272,7 +272,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Tietoja LxQtista</translation>
|
||||
<translation type="vanished">Tietoja LXQtista</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Oui</translation>
|
||||
@ -40,11 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erreur du gestionnaire d'énergie de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erreur du gestionnaire d'énergie de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -53,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -61,7 +61,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -89,8 +89,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspendre la session LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspendre la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -99,8 +99,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Mettre la session LxQt en hibernation</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Mettre la session LXQt en hibernation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -109,8 +109,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Redémarrer la session LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Redémarrer la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -119,8 +119,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Éteindre la session LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Éteindre la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -129,8 +129,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Se déconnecter de la session LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Se déconnecter de la session LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -140,8 +140,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erreur du gestionnaire d'énergie de LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erreur du gestionnaire d'énergie de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -155,7 +155,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Vider</translation>
|
||||
@ -244,7 +244,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">À propos de LxQt</translation>
|
||||
<translation type="vanished">À propos de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -25,7 +25,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Verzió: %1</translation>
|
||||
@ -77,17 +77,17 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="vanished">(%1 aktív)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Energiakezelő hiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -97,7 +97,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -105,7 +105,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -133,7 +133,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Az LXQT készenléte</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Az LXQT elaltatása</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -153,8 +153,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt újraindítás</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt újraindítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -163,8 +163,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt kikapcsolás</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt kikapcsolás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -173,8 +173,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt kijelentkezés</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt kijelentkezés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -184,8 +184,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt energiakezelő hiba</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt energiakezelő hiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -199,7 +199,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -10,10 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -23,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -31,7 +31,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -59,7 +59,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -69,7 +69,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -79,7 +79,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -110,7 +110,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -125,7 +125,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -10,10 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -23,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -31,7 +31,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -59,7 +59,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -69,7 +69,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -79,7 +79,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -110,7 +110,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -125,7 +125,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Versione: %1</translation>
|
||||
@ -68,7 +68,7 @@
|
||||
<translation type="obsolete">No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Strumenti desktop di LXQt - informazioni tecniche</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Errore del gestore energetico di LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Errore del gestore energetico di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Sospendi la sessione di LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Sospendi la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Iberna la sessione di LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Iberna la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Riavvia la sessione di LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Riavvia la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Spegni la sessione di LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Spegni la sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Esci dalla sessione di LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Esci dalla sessione di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Errore del gestore energetico di LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Errore del gestore energetico di LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Pulisci</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Informazioni su LxQt</translation>
|
||||
<translation type="vanished">Informazioni su LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -25,7 +25,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">バージョン: %1</translation>
|
||||
@ -38,7 +38,7 @@
|
||||
<message>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="vanished">LxQtは、<a %1>Razor-qt</a>プロジェクトとそのたくさんの貢献者たちなしにはありえませんでした。</translation>
|
||||
<translation type="vanished">LXQtは、<a %1>Razor-qt</a>プロジェクトとそのたくさんの貢献者たちなしにはありえませんでした。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
@ -77,18 +77,18 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="vanished">(%1 有効)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt電源管理エラー</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt電源管理エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -97,7 +97,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -105,7 +105,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -133,8 +133,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQtセッションのサスペンド</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQtセッションのサスペンド</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -143,8 +143,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQtセッションの休止</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQtセッションの休止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -154,8 +154,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQtセッションの再起動</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQtセッションの再起動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -164,8 +164,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQtセッションのシャットダウン</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQtセッションのシャットダウン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -174,8 +174,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQtセッションのログアウト</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQtセッションのログアウト</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -185,8 +185,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt電源管理エラー</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt電源管理エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -200,7 +200,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -278,7 +278,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">LxQtについて</translation>
|
||||
<translation type="vanished">LXQtについて</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -10,10 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -23,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -31,7 +31,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -59,7 +59,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -69,7 +69,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -79,7 +79,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -110,7 +110,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -125,7 +125,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Taip</translation>
|
||||
@ -40,11 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Energijos Nustatymų Klaida</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Energijos Nustatymų Klaida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -53,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -61,7 +61,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -89,8 +89,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt sesijos užmigdymas</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt sesijos užmigdymas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -99,8 +99,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt sesijos sustabdymas į atmintį.</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt sesijos sustabdymas į atmintį.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -109,8 +109,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt sesijos perkrovimas</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt sesijos perkrovimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -119,8 +119,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt sesijos išjungimas</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt sesijos išjungimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -129,8 +129,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt sesijos atjungimas</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt sesijos atjungimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -140,8 +140,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Energijos Nustatymų Klaida</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Energijos Nustatymų Klaida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -155,7 +155,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Išvalyti</translation>
|
||||
@ -244,7 +244,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Apie LxQt</translation>
|
||||
<translation type="vanished">Apie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Ja</translation>
|
||||
@ -40,11 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Energiebeheer fout</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Energiebeheer fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -53,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -61,7 +61,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -89,8 +89,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt Sessie Slapen</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Sessie Slapen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -99,8 +99,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt Sessie Slaapstand</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Sessie Slaapstand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -109,8 +109,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt Sessie Herstarten</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Sessie Herstarten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -119,8 +119,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt Sessie Afsluiten</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Sessie Afsluiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -129,8 +129,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt Sessie Afmelden</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Sessie Afmelden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -140,8 +140,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Energiebeheer fout</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Energiebeheer fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -155,7 +155,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Wissen</translation>
|
||||
@ -244,7 +244,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Over LxQt</translation>
|
||||
<translation type="vanished">Over LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Wersja: %1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">Nie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Skrzynka narzędziowa pulpitu LxQt - Informacje techniczne</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Skrzynka narzędziowa pulpitu LXQt - Informacje techniczne</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,10 +130,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Błąd zarządzania energią</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,7 +179,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Uśpij sesję</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -189,7 +189,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernuj sesję</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -199,7 +199,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Uruchom ponownie</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Wyłącz</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -219,7 +219,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Wyloguj</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -230,7 +230,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Błąd zarządzania energią</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Wyczyść</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">O LxQt</translation>
|
||||
<translation type="vanished">O LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -33,7 +33,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Versão: %1</translation>
|
||||
@ -46,7 +46,7 @@
|
||||
<message>
|
||||
<source>LXQt would not have been possible without the <a %1>Razor-qt</a> project and its many contributors.</source>
|
||||
<comment>About dialog, 'About' tab text</comment>
|
||||
<translation type="vanished">O LxQt não seria possível sem a ajuda dos colaboradores do projeto <a %1>Razor-qt</a>.</translation>
|
||||
<translation type="vanished">O LXQt não seria possível sem a ajuda dos colaboradores do projeto <a %1>Razor-qt</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright: %1-%2 %3</source>
|
||||
@ -66,7 +66,7 @@
|
||||
<message>
|
||||
<source>LXQt is developed by the <a %1>LXQt Team and contributors</a>.</source>
|
||||
<comment>About dialog, 'Authors' tab text</comment>
|
||||
<translation type="vanished">O LxQt é desenvolvido pelos <a %1>colaboradores da equipa LxQt</a>.</translation>
|
||||
<translation type="vanished">O LXQt é desenvolvido pelos <a %1>colaboradores da equipa LXQt</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>If you are interested in working with our development team, <a %1>join us</a>.</source>
|
||||
@ -81,7 +81,7 @@
|
||||
<message>
|
||||
<source>LXQt is translated into many languages thanks to the work of the translation teams all over the world.</source>
|
||||
<comment>About dialog, 'Translations' tab text</comment>
|
||||
<translation type="vanished">O LxQt está traduzido em diversos idiomas graças ao trabalho desenvolvido pelas equipas de tradução de todo o mundo.</translation>
|
||||
<translation type="vanished">O LXQt está traduzido em diversos idiomas graças ao trabalho desenvolvido pelas equipas de tradução de todo o mundo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
@ -92,7 +92,7 @@
|
||||
<translation type="obsolete">Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Ambiente de trabalho LXQt - Informações técnicas</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -154,18 +154,18 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="vanished">(%1 ativo)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -174,7 +174,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -182,7 +182,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -210,7 +210,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspender</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -220,7 +220,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernar</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -230,7 +230,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reiniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -240,7 +240,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Desligar</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -250,7 +250,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Terminar sessão</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -261,8 +261,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erro do gestor de energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -276,7 +276,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -330,7 +330,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpar</translation>
|
||||
@ -365,7 +365,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished"> Sobre o LxQt</translation>
|
||||
<translation type="vanished"> Sobre o LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Versão: %1</translation>
|
||||
@ -68,7 +68,7 @@
|
||||
<translation type="obsolete">Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Caixa De Ferramentas Do Desktop LXQt - Informações Técnicas</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erro ao gerenciar energia do LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Erro ao gerenciar energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Suspender sessão do LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Suspender sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernar sessão do LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reiniciar sessão do LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reiniciar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Desligar sessão do LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Desligar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Encerrar sessão do LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Encerrar sessão do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Erro ao gerenciar energia do LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Erro ao gerenciar energia do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Limpar</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">Sobre o LxQt</translation>
|
||||
<translation type="vanished">Sobre o LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Da</translation>
|
||||
@ -40,11 +40,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Eroare gestiune alimentare LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Eroare gestiune alimentare LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -53,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -61,7 +61,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Sesiune LXQt - suspendare</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Sesiune LXQt - hibernare</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -109,7 +109,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Sesiune LXQt - repornire</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -119,7 +119,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Sesiune LXQt - oprire</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -129,7 +129,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Sesiune LXQt - ieșire</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -140,8 +140,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Eroare gestiune alimentare LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Eroare gestiune alimentare LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -155,7 +155,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Curăță</translation>
|
||||
@ -244,7 +244,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished"> Despre LxQt</translation>
|
||||
<translation type="vanished"> Despre LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -25,7 +25,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Версия: %1</translation>
|
||||
@ -77,18 +77,18 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="vanished">(%1 активный)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -97,7 +97,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -105,7 +105,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -133,8 +133,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -143,8 +143,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -153,8 +153,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -163,8 +163,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -173,8 +173,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -184,8 +184,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -199,7 +199,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -25,7 +25,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Версия: %1</translation>
|
||||
@ -77,18 +77,18 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AddPluginDialog</name>
|
||||
<name>LXQt::AddPluginDialog</name>
|
||||
<message>
|
||||
<source>(%1 active)</source>
|
||||
<translation type="vanished">(%1 активный)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -97,7 +97,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -105,7 +105,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -133,8 +133,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Ждущий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -143,8 +143,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Спящий режим сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -153,8 +153,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Перезагрузка сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -163,8 +163,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -173,8 +173,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Завершение сеанса LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Завершение сеанса LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -184,8 +184,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка управления энергопотреблением LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -199,7 +199,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -29,11 +29,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba správcu napájania LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Chyba správcu napájania LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -42,7 +42,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -50,7 +50,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -78,8 +78,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>Úsporný režim relácie LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Úsporný režim relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -88,8 +88,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>Hibernácia relácie LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Hibernácia relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -98,8 +98,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>Reštart relácie LxQt</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Reštart relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -108,8 +108,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>Vypnutie relácie LxQt</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Vypnutie relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -118,8 +118,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Odhlásenie relácie LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odhlásenie relácie LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -129,8 +129,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Chyba správcu napájania LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Chyba správcu napájania LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -144,7 +144,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -198,7 +198,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Vyčistiť</translation>
|
||||
@ -233,7 +233,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">O prostredí LxQt</translation>
|
||||
<translation type="vanished">O prostredí LXQt</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Yes</source>
|
||||
<translation type="obsolete">Da</translation>
|
||||
@ -40,10 +40,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Napaka upravljanja z energijo</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -53,7 +53,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -61,7 +61,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Seja v pripravljenost</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Seja v mirovanje</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -109,7 +109,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Ponovni zagon seje</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -119,7 +119,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Izklop seje</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -129,7 +129,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Odjava seje</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -140,7 +140,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Napaka upravljanja z energijo</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -155,7 +155,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -195,12 +195,12 @@
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="107"/>
|
||||
<source>An error occurred starting screensaver. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Preverite, ali imate nameščen in zagnan XLxQt::ScreenSaver.</translation>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Preverite, ali imate nameščen in zagnan XLXQt::ScreenSaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="115"/>
|
||||
<source>An error occurred starting screensaver. Action 'activate' failed. Ensure you have xscreensaver installed and running.</source>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Dejanje »activate« ni uspelo. Preverite, ali imate nameščen in zagnan XLxQt::ScreenSaver.</translation>
|
||||
<translation>Prišlo je do napake pri zagonu ohranjevalnika zaslona. Dejanje »activate« ni uspelo. Preverite, ali imate nameščen in zagnan XLXQt::ScreenSaver.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="124"/>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Počisti</translation>
|
||||
@ -244,7 +244,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">O LxQt</translation>
|
||||
<translation type="vanished">O LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -10,10 +10,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -23,7 +23,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -31,7 +31,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -59,7 +59,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -69,7 +69,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -79,7 +79,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -89,7 +89,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -99,7 +99,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -110,7 +110,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -125,7 +125,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
|
@ -29,10 +29,10 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Грешка Рејзоровог менаџера напајања</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -42,7 +42,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -50,7 +50,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -78,7 +78,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Суспендовање Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -88,7 +88,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Хибернација Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -98,7 +98,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Поновно покретање Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -108,7 +108,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Гашење Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -118,7 +118,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Одјава Рејзорове сесије</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -129,7 +129,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Грешка Рејзоровог менаџера напајања</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -144,7 +144,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -198,7 +198,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Очисти</translation>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">รุ่น: %1</translation>
|
||||
@ -68,7 +68,7 @@
|
||||
<translation type="obsolete">ไม่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>กล่องเครื่องมือเดกส์ท็อป LXQt - ข้อมูลทางเทคนิค</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">โปรแกรมจัดการพลังงานของ LxQt ขัดข้อง</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">โปรแกรมจัดการพลังงานของ LXQt ขัดข้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>พักการทำงานของ LxQt</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>พักการทำงานของ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>จำศีลการทำงานของ LxQt</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>จำศีลการทำงานของ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation> เริ่มการทำงานของ LxQt ใหม่</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation> เริ่มการทำงานของ LXQt ใหม่</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>จบการทำงานของ lxqt</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>ออกจากระบบ LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>ออกจากระบบ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>โปรแกรมจัดการพลังงานของ LxQt ขัดข้อง</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>โปรแกรมจัดการพลังงานของ LXQt ขัดข้อง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">ล้าง</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">เกี่ยวกับ LxQt</translation>
|
||||
<translation type="vanished">เกี่ยวกับ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Versiyon: %1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">Hayır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt Masaüstü araç kutusu - Teknik bilgi</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt Masaüstü araç kutusu - Teknik bilgi</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt Güç Yöneticisi Hatası</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt Güç Yöneticisi Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>LxQt Oturum Askıya Alma</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>LXQt Oturum Askıya Alma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>LxQt Oturum Uyku Kipi</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>LXQt Oturum Uyku Kipi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>LxQt Oturum Yeniden Başlatma</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>LXQt Oturum Yeniden Başlatma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,8 +209,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<translation>LxQt Oturum Kapatma</translation>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>LXQt Oturum Kapatma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="183"/>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>LxQt Oturumu Kapatma</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>LXQt Oturumu Kapatma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt Güç Yöneticisi Hatası</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt Güç Yöneticisi Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Temizle</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">LxQt Hakkında</translation>
|
||||
<translation type="vanished">LXQt Hakkında</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">Версія: %1</translation>
|
||||
@ -68,7 +68,7 @@
|
||||
<translation type="obsolete">Ні</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>Інструменти стільниці LXQt - Технічна інформація</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">Збій менеджера живлення LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">Збій менеджера живлення LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,7 +179,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Призупинити комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -189,7 +189,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Приспати комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -199,7 +199,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Перезавантажити комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Вимкнути комп’ютер</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>Вийти з сеансу LxQt</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Вийти з сеансу LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>Збій менеджера живлення LxQt</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Збій менеджера живлення LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">Очистити</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished"> Про LxQt</translation>
|
||||
<translation type="vanished"> Про LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">版本:%1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">否</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt 桌面工具箱 - 技术信息</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt 桌面工具箱 - 技术信息</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt电源管理器错误</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt电源管理器错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>挂起LxQt会话</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>挂起LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>休眠LxQt会话</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>休眠LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>重启LxQt会话</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>重启LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>关闭电源</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>注销LxQt会话</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>注销LXQt会话</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt电源管理器错误</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt电源管理器错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">清除</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">关于LxQt</translation>
|
||||
<translation type="vanished">关于LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -29,7 +29,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation type="vanished">版本: %1</translation>
|
||||
@ -68,8 +68,8 @@
|
||||
<translation type="obsolete">否</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LxQt桌面工具箱-技術資訊</b></translation>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation type="obsolete"><b>LXQt桌面工具箱-技術資訊</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Version</source>
|
||||
@ -130,11 +130,11 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::MessageBox</name>
|
||||
<name>LXQt::MessageBox</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation type="unfinished">LxQt電源管理員錯誤</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation type="unfinished">LXQt電源管理員錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="70"/>
|
||||
@ -143,7 +143,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<location filename="../lxqtnotification.cpp" line="152"/>
|
||||
<source>Notifications Fallback</source>
|
||||
@ -151,7 +151,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="112"/>
|
||||
<source>Hibernate</source>
|
||||
@ -179,8 +179,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="152"/>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<translation>暫停LxQt會話</translation>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>暫停LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="153"/>
|
||||
@ -189,8 +189,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="162"/>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<translation>休眠LxQt會話</translation>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>休眠LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="163"/>
|
||||
@ -199,8 +199,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="172"/>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<translation>重新啟動LxQt會話</translation>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>重新啟動LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="173"/>
|
||||
@ -209,7 +209,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="182"/>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>關閉電源</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -219,8 +219,8 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="192"/>
|
||||
<source>LxQt Session Logout</source>
|
||||
<translation>登出LxQt會話</translation>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>登出LXQt會話</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="193"/>
|
||||
@ -230,8 +230,8 @@
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
<location filename="../lxqtpowermanager.cpp" line="206"/>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<translation>LxQt電源管理員錯誤</translation>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>LXQt電源管理員錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lxqtpowermanager.cpp" line="201"/>
|
||||
@ -245,7 +245,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<location filename="../lxqtscreensaver.cpp" line="51"/>
|
||||
<source>Lock Screen</source>
|
||||
@ -299,7 +299,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation type="obsolete">清除</translation>
|
||||
@ -334,7 +334,7 @@
|
||||
<name>about</name>
|
||||
<message>
|
||||
<source> About LXQt</source>
|
||||
<translation type="vanished">關於LxQt</translation>
|
||||
<translation type="vanished">關於LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About</source>
|
||||
|
@ -19,7 +19,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::PowerManager</name>
|
||||
<name>LXQt::PowerManager</name>
|
||||
<message>
|
||||
<source>Hibernate</source>
|
||||
<translation>Спящий режим</translation>
|
||||
@ -41,7 +41,7 @@
|
||||
<translation>Завершить сеанс</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Session Suspend</source>
|
||||
<source>LXQt Session Suspend</source>
|
||||
<translation>Paзор Ждущий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -49,7 +49,7 @@
|
||||
<translation>Перевести компьютер в ждущий режим?<p>Состояние системы будет потеряно при отключении питания.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Session Hibernate</source>
|
||||
<source>LXQt Session Hibernate</source>
|
||||
<translation>Paзор Спящий режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -57,7 +57,7 @@
|
||||
<translation>Перевести компьютер в спящий режим?<p>Состояние системы будет сохранено при отключении питания.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Session Reboot</source>
|
||||
<source>LXQt Session Reboot</source>
|
||||
<translation>Paзор Перезагрузка</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -65,7 +65,7 @@
|
||||
<translation>Перезагрузить компьютер? Все не сохраненные документы будут потеряны...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Session Shutdown</source>
|
||||
<source>LXQt Session Shutdown</source>
|
||||
<translation>Paзор Выключение</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -73,7 +73,7 @@
|
||||
<translation>Выключить компьютер? Все не сохраненные документы будут потеряны...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Session Logout</source>
|
||||
<source>LXQt Session Logout</source>
|
||||
<translation>Paзор Завершение сеанса</translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -81,7 +81,7 @@
|
||||
<translation>Завершить сеанс?<p>Все не сохраненные документы будут потеряны...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>LxQt Power Manager Error</source>
|
||||
<source>LXQt Power Manager Error</source>
|
||||
<translation>Ошибка Paзор менеджер электроэнергии </translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -109,7 +109,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::AboutDialogPrivate</name>
|
||||
<name>LXQt::AboutDialogPrivate</name>
|
||||
<message>
|
||||
<source>Version: %1</source>
|
||||
<translation>Версия: %1</translation>
|
||||
@ -143,7 +143,7 @@
|
||||
<translation>Hет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>LxQt Desktop Toolbox - Technical Info</b></source>
|
||||
<source><b>LXQt Desktop Toolbox - Technical Info</b></source>
|
||||
<translation><b>Инструментарий рабочего стола LXQt - Техническая Информация</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
@ -211,14 +211,14 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::NotificationPrivate</name>
|
||||
<name>LXQt::NotificationPrivate</name>
|
||||
<message>
|
||||
<source>Notifications Fallback</source>
|
||||
<translation>Уведомления отступление</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ShortcutButton</name>
|
||||
<name>LXQt::ShortcutButton</name>
|
||||
<message>
|
||||
<source>Clear</source>
|
||||
<translation>Очистить</translation>
|
||||
@ -229,7 +229,7 @@
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LxQt::ScreenSaver</name>
|
||||
<name>LXQt::ScreenSaver</name>
|
||||
<message>
|
||||
<source>Lock Screen</source>
|
||||
<translation>Заблокировать экран</translation>
|
||||
|
Loading…
x
Reference in New Issue
Block a user