diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-06-10 15:31:57 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-06-10 15:31:57 +0200 |
commit | 8d32813c427d1f4aba835022e6ccd3339ee28779 (patch) | |
tree | 56875c9bd7642fa046c26336b8826c12e2a50ccd /lib | |
parent | 73a9afed6de7c329cc9226a9b869f3305d5910d6 (diff) | |
download | nextcloud-server-8d32813c427d1f4aba835022e6ccd3339ee28779.tar.gz nextcloud-server-8d32813c427d1f4aba835022e6ccd3339ee28779.zip |
backport design change
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/defaults.php | 14 |
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)) { |