diff --git a/lang/de.ts b/lang/de.ts index fc7f116..07af964 100644 --- a/lang/de.ts +++ b/lang/de.ts @@ -52,13 +52,21 @@ - The api key which can be found in your account page on <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> - + The api key which can be found in your account page on <a href="http://notifymyandroid.com/">Notifymyandroid.com</a>. + Der Api Schlüssel welcher in auf deiner Account seite auf <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> gefunden werden kann. + If you don't have an accout yet please register at <a href="http://notifymyandroid.com/">Notifymyandroid.com</a>. + Falls du noch keinenn account hast registriere dich bitte auf <a href="http://notifymyandroid.com/">Notifymyandroid.com</a>. + + + The api key which can be found in your account page on <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> + Der Api Schlüssel welcher in auf deiner Account seite auf <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> gefunden werden kann + + If you don't have an accout yet please register at <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> - + Falls du noch keinenn account hast registriere dich bitte auf <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> @@ -71,7 +79,7 @@ The user key which can be found on your account page on <a href="https://pushover.net">Pushover.net</a>. - + Der Benutzerschlüssel den du auf deiner account seite auf <a href="https://pushover.net">Pushover.net</a> finden kannst. @@ -81,7 +89,7 @@ The pushover sound that it played when a notification is recieved. - + Der pushover Ton der beim erhalten einer mitteilung abgespielt wird. @@ -90,8 +98,8 @@ - The devices that hould recieve the notifications. - + The devices that are to recieve the notifications. + Die geräte welche die mitteilung erhalten werden. @@ -330,7 +338,7 @@ The sound played when a notifications is recieved. - + Der Ton der abgespielt wird wenn eine Mitteilung erhalten wird. @@ -353,12 +361,12 @@ The device id which can be foun in the toasty app. - + Die Geräte ID die in der toasty app gefunden werden kann. <a href="http://supertoasty.com/">Supertoasty.com</a> - + diff --git a/lang/en.ts b/lang/en.ts index cf62379..8740860 100644 --- a/lang/en.ts +++ b/lang/en.ts @@ -52,12 +52,12 @@ - The api key which can be found in your account page on <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> + The api key which can be found in your account page on <a href="http://notifymyandroid.com/">Notifymyandroid.com</a>. - If you don't have an accout yet please register at <a href="http://notifymyandroid.com/">Notifymyandroid.com</a> + If you don't have an accout yet please register at <a href="http://notifymyandroid.com/">Notifymyandroid.com</a>. @@ -90,7 +90,7 @@ - The devices that hould recieve the notifications. + The devices that are to recieve the notifications. diff --git a/src/plugins/secondary_backends/nma/nmasettings.cpp b/src/plugins/secondary_backends/nma/nmasettings.cpp index 3b087e0..c9f34da 100644 --- a/src/plugins/secondary_backends/nma/nmasettings.cpp +++ b/src/plugins/secondary_backends/nma/nmasettings.cpp @@ -26,8 +26,8 @@ NotifyMyAndroidSettings::NotifyMyAndroidSettings(Snore::SnorePlugin *plugin, QWi Snore::PluginSettingsWidget(plugin, parent), m_lineEdit(new QLineEdit) { - addRow(tr("Api Key:"), m_lineEdit, tr("The api key which can be found in your account page on Notifymyandroid.com")); - addRow(QString(), new QLabel(tr("If you don't have an accout yet please register at Notifymyandroid.com"),this)); + addRow(tr("Api Key:"), m_lineEdit, tr("The api key which can be found in your account page on Notifymyandroid.com.")); + addRow(QString(), new QLabel(tr("If you don't have an accout yet please register at Notifymyandroid.com."),this)); } NotifyMyAndroidSettings::~NotifyMyAndroidSettings() diff --git a/src/plugins/secondary_backends/pushover_backend/pushoversettings.cpp b/src/plugins/secondary_backends/pushover_backend/pushoversettings.cpp index 2ffa8fe..e64fcb3 100644 --- a/src/plugins/secondary_backends/pushover_backend/pushoversettings.cpp +++ b/src/plugins/secondary_backends/pushover_backend/pushoversettings.cpp @@ -30,7 +30,7 @@ PushoverSettings::PushoverSettings(Snore::SnorePlugin *plugin, QWidget *parent) { addRow(tr("User Key:"), m_keyLineEdit, tr("The user key which can be found on your account page on Pushover.net.")); addRow(tr("Sound:"), m_soundLineEdit, tr("The pushover sound that it played when a notification is recieved.")); - addRow(tr("Devices:"), m_deviceLineEdit, tr("The devices that hould 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 Pushover.net"),this)); }