mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
tr: Don't hardcode app name in string
This commit is contained in:
parent
7614776e10
commit
e37fc8c6e5
1 changed files with 2 additions and 1 deletions
|
@ -272,7 +272,8 @@ void Application::slotFetchCredentials()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "Can not try again to fetch Credentials.";
|
qDebug() << "Can not try again to fetch Credentials.";
|
||||||
trayMessage = tr("ownCloud user credentials are wrong. Please check configuration.");
|
trayMessage = tr("%1 user credentials are wrong. Please check configuration.")
|
||||||
|
.arg(Theme::instance()->appName());
|
||||||
}
|
}
|
||||||
|
|
||||||
if( !trayMessage.isEmpty() ) {
|
if( !trayMessage.isEmpty() ) {
|
||||||
|
|
Loading…
Reference in a new issue