aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/defaults.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/defaults.php')
-rw-r--r--lib/private/defaults.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/private/defaults.php b/lib/private/defaults.php
index 43e8c8082cc..7eee2dc75c7 100644
--- a/lib/private/defaults.php
+++ b/lib/private/defaults.php
@@ -51,19 +51,19 @@ class OC_Defaults {
$this->l = \OC::$server->getL10N('lib');
$version = \OCP\Util::getVersion();
- $this->defaultEntity = 'ownCloud'; /* e.g. company name, used for footers and copyright notices */
- $this->defaultName = 'ownCloud'; /* short name, used when referring to the software */
- $this->defaultTitle = 'ownCloud'; /* can be a longer name, for titles */
- $this->defaultBaseUrl = 'https://owncloud.org';
- $this->defaultSyncClientUrl = 'https://owncloud.org/sync-clients/';
+ $this->defaultEntity = 'Nextcloud'; /* e.g. company name, used for footers and copyright notices */
+ $this->defaultName = 'Nextcloud'; /* short name, used when referring to the software */
+ $this->defaultTitle = 'Nextcloud'; /* can be a longer name, for titles */
+ $this->defaultBaseUrl = 'https://nextcloud.com';
+ $this->defaultSyncClientUrl = 'https://nextcloud.com/install/';
$this->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8';
$this->defaultiTunesAppId = '543672169';
$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android';
$this->defaultDocBaseUrl = 'https://doc.owncloud.org';
$this->defaultDocVersion = $version[0] . '.' . $version[1]; // used to generate doc links
- $this->defaultSlogan = $this->l->t('web services under your control');
+ $this->defaultSlogan = $this->l->t('a safe home for all your data');
$this->defaultLogoClaim = '';
- $this->defaultMailHeaderColor = '#1d2d44'; /* header color of mail notifications */
+ $this->defaultMailHeaderColor = '#0082c9'; /* header color of mail notifications */
$themePath = OC::$SERVERROOT . '/themes/' . OC_Util::getTheme() . '/defaults.php';
if (file_exists($themePath)) {