summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 22:04:59 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 22:04:59 +0200
commite336636166be51b2c6a53fb9a2ff837916fbb3cd (patch)
tree5e41ea38657a02d4ecc630f0fff3be32fb276f31
parent38e657a5d5791919937ca8e0deb2460aaa103883 (diff)
some final renaming fixes
-rw-r--r--js/app/Config.js6
-rw-r--r--js/directive/NewsTitleUnreadCount.js2
2 files changed, 4 insertions, 4 deletions
diff --git a/js/app/Config.js b/js/app/Config.js
index 8300258ef..4ccbf8cba 100644
--- a/js/app/Config.js
+++ b/js/app/Config.js
@@ -29,7 +29,7 @@ app.config(function ($routeProvider, $provide, $httpProvider) {
$provide.constant('MARK_READ_TIMEOUT', 0.5);
$provide.constant('SCROLL_TIMEOUT', 0.1);
- // make sure that the CSRF header is only sent to the ownCloud domain
+ // make sure that the CSRF header is only sent to the Nextcloud domain
$provide.factory('CSRFInterceptor', function ($q, BASE_URL, $window) {
return {
request: function (config) {
@@ -53,8 +53,8 @@ app.config(function ($routeProvider, $provide, $httpProvider) {
500: t('news', 'Internal server error! Please check your ' +
'data/owncloud.log file for additional ' +
'information!'),
- 503: t('news', 'Request failed, ownCloud is in currently ' +
- 'in maintenance mode!'),
+ 503: t('news', 'Request failed, Nextcloud is in currently ' +
+ 'in maintenance mode!')
};
$provide.factory('ConnectionErrorInterceptor', function ($q, $timeout) {
var timer;
diff --git a/js/directive/NewsTitleUnreadCount.js b/js/directive/NewsTitleUnreadCount.js
index 3ca064c82..8454a1858 100644
--- a/js/directive/NewsTitleUnreadCount.js
+++ b/js/directive/NewsTitleUnreadCount.js
@@ -13,7 +13,7 @@ app.directive('newsTitleUnreadCount', function ($window) {
var baseTitle = $window.document.title;
var titles = baseTitle.split('-');
var appName = titles[0] || 'News';
- var ownCloudName = titles[1] || 'ownCloud';
+ var ownCloudName = titles[1] || 'Nextcloud';
return {
restrict: 'E',