mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 23:28:14 +03:00
Fix literal occurances of "ownCloud" in GUI
This commit is contained in:
parent
3c95d342ee
commit
2240039442
3 changed files with 6 additions and 4 deletions
|
@ -76,7 +76,7 @@
|
|||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Enter the url of the ownCloud you want to connect to (without http or https).</string>
|
||||
<string>Enter the URL of the server that you want to connect to (without http or https).</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>https://...</string>
|
||||
|
|
|
@ -41,7 +41,7 @@ OwncloudSetupPage::OwncloudSetupPage()
|
|||
|
||||
Theme *theme = Theme::instance();
|
||||
setTitle(WizardCommon::titleTemplate().arg(tr("Connect to %1").arg(theme->appNameGUI())));
|
||||
setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Setup ownCloud server")));
|
||||
setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Setup %1 server").arg(theme->appNameGUI())));
|
||||
|
||||
registerField( QLatin1String("OCUrl*"), _ui.leUrl );
|
||||
|
||||
|
@ -227,7 +227,8 @@ void OwncloudSetupPage::setConfigExists( bool config )
|
|||
_configExists = config;
|
||||
|
||||
if (config == true) {
|
||||
setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Update ownCloud server")));
|
||||
setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Update %1 server")
|
||||
.arg(Theme::instance()->appNameGUI())));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -78,7 +78,8 @@ void OwncloudWizardResultPage::initializePage()
|
|||
text = tr("Your entire account is synced to the local folder <i>%1</i>")
|
||||
.arg(QDir::toNativeSeparators(localFolder));
|
||||
} else {
|
||||
text = tr("ownCloud folder <i>%1</i> is synced to local folder <i>%2</i>")
|
||||
text = tr("%1 folder <i>%1</i> is synced to local folder <i>%2</i>")
|
||||
.arg(Theme::instance()->appNameGUI())
|
||||
.arg(_remoteFolder).arg(QDir::toNativeSeparators(localFolder));
|
||||
}
|
||||
_ui.localFolderLabel->setText( text );
|
||||
|
|
Loading…
Reference in a new issue