Temporary fix for project translations

Signed-off-by: Julius Härtl <jus@bitgrid.net>
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Julius Härtl 2019-06-07 10:27:09 +02:00 committed by Christoph Wurst
parent 84f45fe73f
commit b41a7cacff
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
2 changed files with 15 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -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 {
/**