Fix literal occurances of "ownCloud" in GUI

This commit is contained in:
Daniel Molkentin 2013-10-08 14:26:28 +02:00
parent 3c95d342ee
commit 2240039442
3 changed files with 6 additions and 4 deletions

View file

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

View file

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

View file

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