QString contextMenuTitle() const
{
- return _strings.value("CONTEXT_MENU_TITLE", "ownCloud");
+ return _strings.value("CONTEXT_MENU_TITLE", "Nextcloud");
}
QString shareActionTitle() const
{
- return _strings.value("SHARE_MENU_TITLE", "Share...");
+ return _strings.value("SHARE_MENU_TITLE", "Share …");
}
QString copyPrivateLinkTitle() const { return _strings["COPY_PRIVATE_LINK_MENU_TITLE"]; }
"<a href='%1'>Click here</a> to re-open the browser.")
.arg(url.toString(QUrl::FullyEncoded)));
} else {
- showConnectionLabel(tr("Connecting to %1...").arg(serverWithUser));
+ showConnectionLabel(tr("Connecting to %1 …").arg(serverWithUser));
}
} else {
showConnectionLabel(tr("No connection to %1 at %2.")
return QVariant(tr("Error while loading the list of folders from the server.")
+ QString("\n") + x->_lastErrorString);
} else {
- return tr("Fetching folder list from server...");
+ return tr("Fetching folder list from server …");
}
break;
default:
}
QString message;
if (pos <= 0) {
- message = tr("Waiting...");
+ message = tr("Waiting …");
} else {
- message = tr("Waiting for %n other folder(s)...", "", pos);
+ message = tr("Waiting for %n other folder(s) …", "", pos);
}
pi = SubFolderInfo::Progress();
pi._overallSyncString = message;
} else if (state == SyncResult::SyncPrepare) {
pi = SubFolderInfo::Progress();
- pi._overallSyncString = tr("Preparing to sync...");
+ pi._overallSyncString = tr("Preparing to sync …");
} else if (state == SyncResult::Problem || state == SyncResult::Success) {
// Reset the progress info after a sync.
pi = SubFolderInfo::Progress();
}
if (accountState->isSignedOut()) {
- QAction *signin = menu->addAction(tr("Log in..."));
+ QAction *signin = menu->addAction(tr("Log in …"));
signin->setProperty(propertyAccountC, QVariant::fromValue(accountState));
connect(signin, &QAction::triggered, this, &ownCloudGui::slotLogin);
} else {
_actionStatus->setEnabled(false);
_navLinksMenu = new QMenu(tr("Apps"));
_navLinksMenu->setEnabled(false);
- _actionSettings = new QAction(tr("Settings..."), this);
- _actionNewAccountWizard = new QAction(tr("New account..."), this);
- _actionRecent = new QAction(tr("View more activity..."), this);
+ _actionSettings = new QAction(tr("Settings …"), this);
+ _actionNewAccountWizard = new QAction(tr("New account …"), this);
+ _actionRecent = new QAction(tr("View more activity …"), this);
_actionRecent->setEnabled(true);
QObject::connect(_actionRecent, &QAction::triggered, this, &ownCloudGui::slotShowSyncProtocol);
AbstractCredentials *creds = _ocWizard->getCredentials();
_ocWizard->account()->setCredentials(creds);
_ocWizard->setField(QLatin1String("OCUrl"), url);
- _ocWizard->appendToConfigurationLog(tr("Trying to connect to %1 at %2...")
+ _ocWizard->appendToConfigurationLog(tr("Trying to connect to %1 at %2 …")
.arg(Theme::instance()->appNameGUI())
.arg(url));
tr("Local sync folder %1 already exists, setting it up for sync.<br/><br/>")
.arg(Utility::escape(localFolder)));
} else {
- QString res = tr("Creating local sync folder %1...").arg(localFolder);
+ QString res = tr("Creating local sync folder %1 …").arg(localFolder);
if (fi.mkpath(localFolder)) {
FileSystem::setFolderMinimumPermissions(localFolder);
Utility::setupFavLink(localFolder);
, _inserting(false)
, _folderTree(new QTreeWidget(this))
{
- _loading = new QLabel(tr("Loading ..."), _folderTree);
+ _loading = new QLabel(tr("Loading …"), _folderTree);
auto layout = new QVBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);
{ "SHARE_MENU_TITLE", tr("Share options") },
{ "CONTEXT_MENU_TITLE", tr("Share via %1").arg(Theme::instance()->appNameGUI())},
{ "COPY_PRIVATE_LINK_MENU_TITLE", tr("Copy private link to clipboard") },
- { "EMAIL_PRIVATE_LINK_MENU_TITLE", tr("Send private link by email...") },
+ { "EMAIL_PRIVATE_LINK_MENU_TITLE", tr("Send private link by email …") },
} };
listener->sendMessage(QString("GET_STRINGS:BEGIN"));
for (const auto& key_value : strings) {
// Disabled: only providing email option for private links would look odd,
// and the copy option is more general.
- //listener->sendMessage(QLatin1String("MENU_ITEM:EMAIL_PRIVATE_LINK") + flagString + tr("Send private link by email..."));
+ //listener->sendMessage(QLatin1String("MENU_ITEM:EMAIL_PRIVATE_LINK") + flagString + tr("Send private link by email …"));
}
SocketApi::FileData SocketApi::FileData::get(const QString &localFile)
switch (downloadState()) {
case Downloading:
- return tr("Downloading version %1. Please wait...").arg(updateVersion);
+ return tr("Downloading version %1. Please wait …").arg(updateVersion);
case DownloadComplete:
return tr("%1 version %2 available. Restart application to start the update.").arg(Theme::instance()->appNameGUI(), updateVersion);
case DownloadFailed:
case UpdateOnlyAvailableThroughSystem:
return tr("New %1 version %2 is available. Please click <a href='%3'>here</a> to download the update.").arg(Theme::instance()->appNameGUI(), updateVersion, _updateInfo.web());
case CheckingServer:
- return tr("Checking update server...");
+ return tr("Checking update server …");
case Unknown:
return tr("Update status is unknown: Did not check for new updates.");
case UpToDate:
setupCustomization();
connect(_ui.pbSelectLocalFolder, &QAbstractButton::clicked, this, &OwncloudAdvancedSetupPage::slotSelectFolder);
- setButtonText(QWizard::NextButton, tr("Connect..."));
+ setButtonText(QWizard::NextButton, tr("Connect …"));
connect(_ui.rSyncEverything, &QAbstractButton::clicked, this, &OwncloudAdvancedSetupPage::slotSyncEverythingClicked);
connect(_ui.rSelectiveSync, &QAbstractButton::clicked, this, &OwncloudAdvancedSetupPage::slotSelectiveSyncClicked);
resultStr = QCoreApplication::translate("theme", "Preparing to sync");
break;
case SyncResult::SyncAbortRequested:
- resultStr = QCoreApplication::translate("theme", "Aborting...");
+ resultStr = QCoreApplication::translate("theme", "Aborting …");
break;
case SyncResult::Paused:
resultStr = QCoreApplication::translate("theme", "Sync is paused");