diff --git a/src/gui/wizard/owncloudsetupnocredspage.ui b/src/gui/wizard/owncloudsetupnocredspage.ui index e158cc19c..d3e62595e 100644 --- a/src/gui/wizard/owncloudsetupnocredspage.ui +++ b/src/gui/wizard/owncloudsetupnocredspage.ui @@ -240,9 +240,9 @@ - + - This is the link to your Nextcloud web interface when you open it in the browser.<br/> It looks like https://cloud.example.com or https://example.com/cloud + This is the link to your %1 web interface when you open it in the browser.<br/>It looks like https://cloud.example.com or https://example.com/cloud true @@ -378,7 +378,7 @@ - Log in to your Nextcloud + Log in to your %1 false @@ -488,8 +488,6 @@
wizard/slideshow.h
- - - + diff --git a/src/gui/wizard/owncloudsetuppage.cpp b/src/gui/wizard/owncloudsetuppage.cpp index f286eebc1..8f03fa124 100644 --- a/src/gui/wizard/owncloudsetuppage.cpp +++ b/src/gui/wizard/owncloudsetuppage.cpp @@ -91,6 +91,11 @@ OwncloudSetupPage::OwncloudSetupPage(QWidget *parent) _ui.slideShow->hide(); #endif + const auto appName = Theme::instance()->appNameGUI(); + _ui.loginButton->setText(tr("Log in to your %1").arg(appName)); + _ui.addressDescriptionLabel->setText(tr("This is the link to your %1 web interface when you open it in the browser.
" + "It looks like https://cloud.example.com or https://example.com/cloud").arg(appName)); + customizeStyle(); }