mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 01:53:27 +03:00
commit
5a1fed8e23
3 changed files with 3 additions and 3 deletions
|
@ -191,7 +191,7 @@ Application::Application(int &argc, char **argv)
|
|||
tr("There was an error while accessing the configuration "
|
||||
"file at %1.")
|
||||
.arg(ConfigFile().configFile()),
|
||||
tr("Quit ownCloud"));
|
||||
tr("Quit Nextcloud"));
|
||||
QTimer::singleShot(0, qApp, SLOT(quit()));
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -505,7 +505,7 @@ void OwncloudSetupWizard::slotRemoteFolderExists(QNetworkReply *reply)
|
|||
|
||||
void OwncloudSetupWizard::createRemoteFolder()
|
||||
{
|
||||
_ocWizard->appendToConfigurationLog(tr("creating folder on ownCloud: %1").arg(_remoteFolder));
|
||||
_ocWizard->appendToConfigurationLog(tr("creating folder on Nextcloud: %1").arg(_remoteFolder));
|
||||
|
||||
MkColJob *job = new MkColJob(_ocWizard->account(), _remoteFolder, this);
|
||||
connect(job, SIGNAL(finished(QNetworkReply::NetworkError)), SLOT(slotCreateRemoteFolderFinished(QNetworkReply::NetworkError)));
|
||||
|
|
|
@ -454,7 +454,7 @@ void SocketApi::command_VERSION(const QString &, SocketListener *listener)
|
|||
|
||||
void SocketApi::command_SHARE_MENU_TITLE(const QString &, SocketListener *listener)
|
||||
{
|
||||
listener->sendMessage(QLatin1String("SHARE_MENU_TITLE:") + tr("Share with %1", "parameter is ownCloud").arg(Theme::instance()->appNameGUI()));
|
||||
listener->sendMessage(QLatin1String("SHARE_MENU_TITLE:") + tr("Share with %1", "parameter is Nextcloud").arg(Theme::instance()->appNameGUI()));
|
||||
}
|
||||
|
||||
// don't pull the share manager into socketapi unittests
|
||||
|
|
Loading…
Reference in a new issue