mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +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 {
|
||||
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() ) {
|
||||
|
|
Loading…
Reference in a new issue