mirror of
https://github.com/theCheeseboard/thedesk.git
synced 2025-01-22 18:32:09 -05:00
Add indicator arrows in status center
This commit is contained in:
parent
ec8450ba35
commit
388b4e0966
176 changed files with 260 additions and 169 deletions
|
@ -48,6 +48,7 @@ SOURCES += \
|
|||
server/sessionserver.cpp \
|
||||
session/endsession.cpp \
|
||||
session/endsessionbutton.cpp \
|
||||
statuscenter/leftpanedelegate.cpp \
|
||||
statuscenter/statuscenter.cpp \
|
||||
statuscenter/statuscenterleftpane.cpp \
|
||||
statuscenter/statuscenterquickswitch.cpp \
|
||||
|
@ -87,6 +88,7 @@ HEADERS += \
|
|||
server/sessionserver.h \
|
||||
session/endsession.h \
|
||||
session/endsessionbutton.h \
|
||||
statuscenter/leftpanedelegate.h \
|
||||
statuscenter/statuscenter.h \
|
||||
statuscenter/statuscenterleftpane.h \
|
||||
statuscenter/statuscenterquickswitch.h \
|
||||
|
|
41
desktop/statuscenter/leftpanedelegate.cpp
Normal file
41
desktop/statuscenter/leftpanedelegate.cpp
Normal file
|
@ -0,0 +1,41 @@
|
|||
/****************************************
|
||||
*
|
||||
* INSERT-PROJECT-NAME-HERE - INSERT-GENERIC-NAME-HERE
|
||||
* Copyright (C) 2020 Victor Tran
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* *************************************/
|
||||
#include "leftpanedelegate.h"
|
||||
|
||||
#include <QPainter>
|
||||
#include <the-libs_global.h>
|
||||
|
||||
LeftPaneDelegate::LeftPaneDelegate(QObject* parent) : QStyledItemDelegate(parent) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
void LeftPaneDelegate::paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const {
|
||||
QStyledItemDelegate::paint(painter, option, index);
|
||||
if (index.data(Qt::UserRole).toBool()) {
|
||||
//Draw an indicator arrow
|
||||
QRect iconRect;
|
||||
iconRect.setSize(SC_DPI_T(QSize(16, 16), QSize));
|
||||
iconRect.moveCenter(option.rect.center());
|
||||
iconRect.moveRight(option.rect.right() - SC_DPI(6));
|
||||
|
||||
painter->drawPixmap(iconRect, QIcon::fromTheme("arrow-right").pixmap(iconRect.size()));
|
||||
}
|
||||
}
|
38
desktop/statuscenter/leftpanedelegate.h
Normal file
38
desktop/statuscenter/leftpanedelegate.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/****************************************
|
||||
*
|
||||
* INSERT-PROJECT-NAME-HERE - INSERT-GENERIC-NAME-HERE
|
||||
* Copyright (C) 2020 Victor Tran
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* *************************************/
|
||||
#ifndef LEFTPANEDELEGATE_H
|
||||
#define LEFTPANEDELEGATE_H
|
||||
|
||||
#include <QStyledItemDelegate>
|
||||
|
||||
class LeftPaneDelegate : public QStyledItemDelegate {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit LeftPaneDelegate(QObject* parent = nullptr);
|
||||
|
||||
signals:
|
||||
|
||||
|
||||
// QAbstractItemDelegate interface
|
||||
public:
|
||||
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
|
||||
};
|
||||
|
||||
#endif // LEFTPANEDELEGATE_H
|
|
@ -180,6 +180,9 @@ void StatusCenter::addPane(StatusCenterPane* pane) {
|
|||
d->paneItems.value(pane)->setIcon(pane->icon());
|
||||
}
|
||||
});
|
||||
if (pane->leftPane()) {
|
||||
item->setData(Qt::UserRole, true);
|
||||
}
|
||||
d->paneItems.insert(pane, item);
|
||||
|
||||
QStringList currentItems;
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include "ui_statuscenterleftpane.h"
|
||||
|
||||
#include <QPainter>
|
||||
#include "leftpanedelegate.h"
|
||||
#include <the-libs_global.h>
|
||||
|
||||
struct StatusCenterLeftPanePrivate {
|
||||
|
@ -35,6 +36,7 @@ StatusCenterLeftPane::StatusCenterLeftPane(QWidget* parent) :
|
|||
d = new StatusCenterLeftPanePrivate();
|
||||
ui->mainList->setIconSize(SC_DPI_T(QSize(32, 32), QSize));
|
||||
ui->stackedWidget->setCurrentAnimation(tStackedWidget::SlideHorizontal);
|
||||
ui->mainList->setItemDelegate(new LeftPaneDelegate(this));
|
||||
}
|
||||
|
||||
StatusCenterLeftPane::~StatusCenterLeftPane() {
|
||||
|
|
|
@ -111,6 +111,9 @@ void SystemSettings::addPane(StatusCenterPane* pane) {
|
|||
d->paneItems.value(pane)->setIcon(pane->icon());
|
||||
}
|
||||
});
|
||||
if (pane->leftPane()) {
|
||||
item->setData(Qt::UserRole, true);
|
||||
}
|
||||
d->paneItems.insert(pane, item);
|
||||
|
||||
QStringList currentItems;
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include <statuscentermanager.h>
|
||||
#include <powermanager.h>
|
||||
#include <tvariantanimation.h>
|
||||
#include "../statuscenter/leftpanedelegate.h"
|
||||
|
||||
struct SystemSettingsLeftPanePrivate {
|
||||
bool isShowingLogOutRequired = false;
|
||||
|
@ -39,6 +40,7 @@ SystemSettingsLeftPane::SystemSettingsLeftPane(QWidget* parent) :
|
|||
|
||||
ui->titleLabel->setBackButtonShown(true);
|
||||
ui->mainList->setIconSize(SC_DPI_T(QSize(32, 32), QSize));
|
||||
ui->mainList->setItemDelegate(new LeftPaneDelegate(this));
|
||||
|
||||
ui->logoutRequiredWidget->setFixedHeight(0);
|
||||
ui->logoutRequiredWidget->setVisible(false);
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -713,7 +713,7 @@ We'll reset your settings in %n seconds if you don't do anything.</tra
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -705,7 +705,7 @@ We'll go ahead and reset your settings in %n seconds if you don't do a
|
|||
<context>
|
||||
<name>SystemSettings</name>
|
||||
<message>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="161"/>
|
||||
<location filename="../systemsettings/systemsettings.cpp" line="164"/>
|
||||
<source>System Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue