From 635df15ff2e42424ffa6d1935ddd8e9829b24587 Mon Sep 17 00:00:00 2001 From: Julius Härtl Date: Thu, 28 Mar 2019 15:30:28 +0100 Subject: Move translations to core MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- core/src/OCP/collaboration.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/src/OCP/collaboration.js b/core/src/OCP/collaboration.js index cfbdb467f5e..c56dea12047 100644 --- a/core/src/OCP/collaboration.js +++ b/core/src/OCP/collaboration.js @@ -32,6 +32,17 @@ **/ let types = {}; +/** + * Those translations will be used by the vue component but they should be shipped with the server + * t('core', 'Add to a collection') + * t('core', 'Show details') + * t('core', 'Hide details') + * t('core', 'Rename collection') + * t('core', 'Failed to rename collection') + * t('core', 'Failed to create collection') + * t('core', 'Failed to add resource to collection') + */ + export default { /** * @@ -51,7 +62,7 @@ export default { return types[type].typeIconClass || ''; }, getLabel(type) { - return t('files_sharing', 'Link to a {label}', { label: types[type].typeString || type }, 1) + return t('core', 'Link to a {label}', { label: types[type].typeString || type }, 1) }, getLink(type, id) { /* TODO: Allow action to be executed instead of href as well */ -- cgit v1.2.3