diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-06-14 17:02:55 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-06-14 17:02:55 +0200 |
commit | 5e2726c0e7664962097bd701a878bae7093f8f07 (patch) | |
tree | 13cb0cd6bf6442b5d2443f6c73b43a7394592044 /core/js/update.js | |
parent | 6b0577c69916843cd59f3187a30b6dc6c4480aa5 (diff) | |
download | nextcloud-server-5e2726c0e7664962097bd701a878bae7093f8f07.tar.gz nextcloud-server-5e2726c0e7664962097bd701a878bae7093f8f07.zip |
Change name of the product in update message
* also update all german translations
* fixes #96
Diffstat (limited to 'core/js/update.js')
-rw-r--r-- | core/js/update.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/update.js b/core/js/update.js index 31b97c56894..e692a7312b8 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -76,7 +76,7 @@ } else { span.append(t('core', 'The update was unsuccessful. ' + 'Please report this issue to the ' + - '<a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.')); + '<a href="https://github.com/nextcloud/server/issues" target="_blank">Nextcloud community</a>.')); } span.appendTo($el); }); @@ -100,7 +100,7 @@ } else { // FIXME: use product name $('<span>') - .append(t('core', 'The update was successful. Redirecting you to ownCloud now.')) + .append(t('core', 'The update was successful. Redirecting you to Nextcloud now.')) .appendTo($el); setTimeout(function () { OC.redirect(OC.webroot + '/'); |