diff --git a/core/js/dist/main.js.map b/core/js/dist/main.js.map index 42545e8b5774461a4dad35f907ee74a0e596846e..3ffabf918096539c05aef13525de89d817ee3abc 100644 Binary files a/core/js/dist/main.js.map and b/core/js/dist/main.js.map differ diff --git a/core/src/OCP/collaboration.js b/core/src/OCP/collaboration.js index efc495b8bf2ce9166c164aac6ab7e166abc6883e..162fe8e2a7561c3dc7a3ffebf7aba1af7828feae 100644 --- a/core/src/OCP/collaboration.js +++ b/core/src/OCP/collaboration.js @@ -34,16 +34,21 @@ let types = {}; /** * Those translations will be used by the vue component but they should be shipped with the server - * t('core', 'Add to a project') - * t('core', 'Show details') - * t('core', 'Hide details') - * t('core', 'Rename project') - * t('core', 'Failed to rename the project') - * t('core', 'Failed to create a project') - * t('core', 'Failed to add the item to the project') - * t('core', 'Connect items to a project to make them easier to find') - * t('core', 'Type to search for existing projects') + * FIXME: Those translations should be added to the library */ +const l10nProjects = () => { + return [ + t('core', 'Add to a project'), + t('core', 'Show details'), + t('core', 'Hide details'), + t('core', 'Rename project'), + t('core', 'Failed to rename the project'), + t('core', 'Failed to create a project'), + t('core', 'Failed to add the item to the project'), + t('core', 'Connect items to a project to make them easier to find'), + t('core', 'Type to search for existing projects') + ]; +} export default { /**