Use label from apps

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-04-08 16:01:52 +02:00
parent b518a6550d
commit b479af83f0
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
2 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@ window.OCP.Collaboration.registerType('file', {
}, false);
});
},
/** used in "Link to a {typeString}" */
typeString: t('files_sharing', 'file'),
typeString: t('files_sharing', 'Link to a file'),
typeIconClass: 'icon-files-dark'
});

View File

@ -64,7 +64,7 @@ export default {
return types[type].typeIconClass || '';
},
getLabel(type) {
return t('core', 'Link to a {label}', { label: types[type].typeString || type }, 1)
return escapeHTML(types[type].typeString || type)
},
getLink(type, id) {
/* TODO: Allow action to be executed instead of href as well */