Fix minor typos
This commit is contained in:
parent
8e70d20a73
commit
b5a6e8220e
|
@ -103,7 +103,7 @@
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tab_secondaryBackends">
|
<widget class="QWidget" name="tab_secondaryBackends">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>Secondary Bckends</string>
|
<string>Secondary Backends</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
<item>
|
<item>
|
||||||
|
|
|
@ -158,7 +158,7 @@ void PushoverFrontend::connectToService()
|
||||||
m_socket->deleteLater();
|
m_socket->deleteLater();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
snoreDebug(SNORE_WARNING) << "unknown message recieved" << msg;
|
snoreDebug(SNORE_WARNING) << "unknown message received" << msg;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
connect(m_socket, &QWebSocket::disconnected, [this]() {
|
connect(m_socket, &QWebSocket::disconnected, [this]() {
|
||||||
|
|
|
@ -27,7 +27,7 @@ NotifyMyAndroidSettings::NotifyMyAndroidSettings(Snore::SnorePlugin *plugin, QWi
|
||||||
m_lineEdit(new QLineEdit)
|
m_lineEdit(new QLineEdit)
|
||||||
{
|
{
|
||||||
addRow(tr("Api Key:"), m_lineEdit, tr("The api key which can be found in your account page at <a href=\"http://notifymyandroid.com/\">Notifymyandroid.com</a>."));
|
addRow(tr("Api Key:"), m_lineEdit, tr("The api key which can be found in your account page at <a href=\"http://notifymyandroid.com/\">Notifymyandroid.com</a>."));
|
||||||
addRow(QString(), new QLabel(tr("If you don't have an accout yet please register at <a href=\"http://notifymyandroid.com/\">Notifymyandroid.com</a>."), this));
|
addRow(QString(), new QLabel(tr("If you don't have an account yet please register at <a href=\"http://notifymyandroid.com/\">Notifymyandroid.com</a>."), this));
|
||||||
}
|
}
|
||||||
|
|
||||||
NotifyMyAndroidSettings::~NotifyMyAndroidSettings()
|
NotifyMyAndroidSettings::~NotifyMyAndroidSettings()
|
||||||
|
|
|
@ -29,9 +29,9 @@ PushoverSettings::PushoverSettings(Snore::SnorePlugin *plugin, QWidget *parent)
|
||||||
m_deviceLineEdit(new QLineEdit(this))
|
m_deviceLineEdit(new QLineEdit(this))
|
||||||
{
|
{
|
||||||
addRow(tr("User Key:"), m_keyLineEdit, tr("The user key which can be found on your account page at <a href=\"https://pushover.net\">Pushover.net</a>."));
|
addRow(tr("User Key:"), m_keyLineEdit, tr("The user key which can be found on your account page at <a href=\"https://pushover.net\">Pushover.net</a>."));
|
||||||
addRow(tr("Sound:"), m_soundLineEdit, tr("The pushover sound that it played when a notification is recieved."));
|
addRow(tr("Sound:"), m_soundLineEdit, tr("The pushover sound that it played when a notification is received."));
|
||||||
addRow(tr("Devices:"), m_deviceLineEdit, tr("The devices that are to recieve the notifications."));
|
addRow(tr("Devices:"), m_deviceLineEdit, tr("The devices that are to recieve the notifications."));
|
||||||
addRow(QString(), new QLabel(tr("If you don't have an accout yet please register at <a href=\"https://pushover.net\">Pushover.net</a>"), this));
|
addRow(QString(), new QLabel(tr("If you don't have an account yet please register at <a href=\"https://pushover.net\">Pushover.net</a>"), this));
|
||||||
}
|
}
|
||||||
|
|
||||||
PushoverSettings::~PushoverSettings()
|
PushoverSettings::~PushoverSettings()
|
||||||
|
|
|
@ -33,7 +33,7 @@ SoundSettings::SoundSettings(SnorePlugin *snorePlugin, QWidget *parent) :
|
||||||
m_spinBoxVolume->setRange(0, 100);
|
m_spinBoxVolume->setRange(0, 100);
|
||||||
addRow(tr("Volume:"), m_spinBoxVolume);
|
addRow(tr("Volume:"), m_spinBoxVolume);
|
||||||
|
|
||||||
addRow(tr("Audio file:"), m_lineEditFileName, tr("The sound played when a notifications is recieved."));
|
addRow(tr("Audio file:"), m_lineEditFileName, tr("The sound played when a notification is received."));
|
||||||
QPushButton *button = new QPushButton(tr("Select a audio file"));
|
QPushButton *button = new QPushButton(tr("Select a audio file"));
|
||||||
connect(button, &QPushButton::clicked, [this]() {
|
connect(button, &QPushButton::clicked, [this]() {
|
||||||
QFileDialog dialog;
|
QFileDialog dialog;
|
||||||
|
|
|
@ -26,7 +26,7 @@ ToastySettings::ToastySettings(Snore::SnorePlugin *plugin, QWidget *parent) :
|
||||||
Snore::PluginSettingsWidget(plugin, parent),
|
Snore::PluginSettingsWidget(plugin, parent),
|
||||||
m_lineEdit(new QLineEdit)
|
m_lineEdit(new QLineEdit)
|
||||||
{
|
{
|
||||||
addRow(tr("Device ID:"), m_lineEdit, tr("The device id which can be foun in the toasty app."));
|
addRow(tr("Device ID:"), m_lineEdit, tr("The device id which can be found in the toasty app."));
|
||||||
addRow(QString(), new QLabel(tr("<a href=\"http://supertoasty.com/\">Supertoasty.com</a>"), this));
|
addRow(QString(), new QLabel(tr("<a href=\"http://supertoasty.com/\">Supertoasty.com</a>"), this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue