Update translations

* Corrected use of QCoreApplication::translate -> QObject::tr
* Corrected plural usage in EntryAttachmentsWidget.cpp
This commit is contained in:
Jonathan White 2019-01-30 20:54:35 -05:00
parent 8bfc539234
commit 5a34f90319
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
48 changed files with 128652 additions and 43462 deletions

View file

@ -111,8 +111,7 @@ Application::Application(int& argc, char** argv)
if (!m_alreadyRunning) {
// If we get here then the original instance is likely dead
qWarning() << QCoreApplication::translate(
"Main", "Existing single-instance lock file is invalid. Launching new instance.")
qWarning() << QObject::tr("Existing single-instance lock file is invalid. Launching new instance.")
.toUtf8()
.constData();
@ -126,8 +125,7 @@ Application::Application(int& argc, char** argv)
break;
}
default:
qWarning() << QCoreApplication::translate("Main",
"The lock file could not be created. Single-instance mode disabled.")
qWarning() << QObject::tr("The lock file could not be created. Single-instance mode disabled.")
.toUtf8()
.constData();
}