Merge pull request #785 from nextcloud/we_are_nextcloud

Use Nextcloud
This commit is contained in:
Roeland Jago Douma 2018-11-05 13:57:17 +01:00 committed by GitHub
commit 5a1fed8e23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -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)));

View file

@ -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