diff options
author | Joas Schilling <coding@schilljs.com> | 2016-11-07 11:25:53 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-11-07 11:25:53 +0100 |
commit | 6573debb0a3c4d02f89322d17c3b3046a104bd4d (patch) | |
tree | 752d2a027549a88034a50c11ae5a6a6ac13e39e9 /apps | |
parent | 1c8f9d665548cd5c9437beaa62d71bb234b5f6ac (diff) | |
download | nextcloud-server-6573debb0a3c4d02f89322d17c3b3046a104bd4d.tar.gz nextcloud-server-6573debb0a3c4d02f89322d17c3b3046a104bd4d.zip |
Fix translation string
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/js/statusmanager.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js index 437e9178d24..ba553f2b6a3 100644 --- a/apps/files_external/js/statusmanager.js +++ b/apps/files_external/js/statusmanager.js @@ -104,7 +104,7 @@ OCA.External.StatusManager = { // 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'); } else { - message = t('files_external', 'Couldn\'t get the information from the ownCloud server: {code} {type}', { + message = t('files_external', 'Couldn\'t get the information from the remote server: {code} {type}', { code: jqxhr.status, type: error }); |