Skip to content
Snippets Groups Projects
Unverified Commit 42ffff95 authored by John Molakvoæ's avatar John Molakvoæ Committed by GitHub
Browse files

Temporary fix for project translations (#15893)

Temporary fix for project translations
parents edb5a4b4 2ced8b94
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -34,16 +34,21 @@ let types = {}; ...@@ -34,16 +34,21 @@ let types = {};
/** /**
* Those translations will be used by the vue component but they should be shipped with the server * Those translations will be used by the vue component but they should be shipped with the server
* t('core', 'Add to a project') * FIXME: Those translations should be added to the library
* 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')
*/ */
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 { export default {
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment