diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-07-11 13:49:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-11 13:49:19 +0200 |
commit | d15fd5cb96043f908f8fdb9e111f1c8686a0434b (patch) | |
tree | d22e3446f507cdfcf6cf44c322ded0d247c4e799 /apps | |
parent | 0c1cf5f7eb15532901aa3b4f29a4e3ee5fa58467 (diff) | |
download | nextcloud-server-d15fd5cb96043f908f8fdb9e111f1c8686a0434b.tar.gz nextcloud-server-d15fd5cb96043f908f8fdb9e111f1c8686a0434b.zip |
Change occurence of ownCloud (#352)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/js/public.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index f207eff7909..3befeaeda1f 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -331,8 +331,8 @@ OCA.Sharing.PublicApp = { $.get(OC.generateUrl('apps/files_sharing/testremote'), {remote: remote}).then(function (protocol) { if (protocol !== 'http' && protocol !== 'https') { toggleLoading(); - OC.dialogs.alert(t('files_sharing', 'No ownCloud installation (7 or higher) found at {remote}', {remote: remote}), - t('files_sharing', 'Invalid ownCloud url')); + OC.dialogs.alert(t('files_sharing', 'No compatible server found at {remote}', {remote: remote}), + t('files_sharing', 'Invalid server URL')); } else { OC.redirect(protocol + '://' + url); } @@ -360,4 +360,3 @@ $(document).ready(function () { }; } }); - |