diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-11-07 13:47:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 13:47:35 +0100 |
commit | 689567ec6d185eb4f34fc8fd69c6730befd6c0ee (patch) | |
tree | 752d2a027549a88034a50c11ae5a6a6ac13e39e9 | |
parent | 1c8f9d665548cd5c9437beaa62d71bb234b5f6ac (diff) | |
parent | 6573debb0a3c4d02f89322d17c3b3046a104bd4d (diff) | |
download | nextcloud-server-689567ec6d185eb4f34fc8fd69c6730befd6c0ee.tar.gz nextcloud-server-689567ec6d185eb4f34fc8fd69c6730befd6c0ee.zip |
Merge pull request #2034 from nextcloud/product-typo
Fix translation string
-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 }); |