diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-07-18 08:48:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-18 08:48:08 +0200 |
commit | 79cf7d610f0a95c6dbc92d6b2f08ba23ed06a578 (patch) | |
tree | 3ea22424198eb1f0c84544c54718f5497f8c5dc9 /apps | |
parent | b1b843e5720525373b269053ee524fb56f962a6b (diff) | |
parent | 6ab8b90e94c37ad665a161e216af2d2fec287dd0 (diff) | |
download | nextcloud-server-79cf7d610f0a95c6dbc92d6b2f08ba23ed06a578.tar.gz nextcloud-server-79cf7d610f0a95c6dbc92d6b2f08ba23ed06a578.zip |
Merge pull request #5740 from nextcloud/comradekingu-patch-5
Spelling: log out, : Bigversal
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/js/statusmanager.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js index ae4ce989130..6c1a965c33d 100644 --- a/apps/files_external/js/statusmanager.js +++ b/apps/files_external/js/statusmanager.js @@ -102,7 +102,7 @@ OCA.External.StatusManager = { var message; if (mountData.location === 3) { // In this case the error is because mount point use Login credentials and don't exist in the session - message = t('files_external', 'Couldn\'t access. Please logout and login to activate this mount point'); + message = t('files_external', 'Couldn\'t access. Please log out and in again to activate this mount point'); } else { message = t('files_external', 'Couldn\'t get the information from the remote server: {code} {type}', { code: jqxhr.status, @@ -267,7 +267,7 @@ OCA.External.StatusManager = { // check if we have a list first if (list === undefined && !self.emptyWarningShown) { self.emptyWarningShown = true; - OC.Notification.show(t('files_external', 'Couldn\'t get the list of Windows network drive mount points: empty response from the server'), + OC.Notification.show(t('files_external', 'Couldn\'t fetch list of Windows network drive mount points: Empty response from server'), {type: 'error'} ); return; |