diff options
Diffstat (limited to 'settings/src')
-rw-r--r-- | settings/src/components/appDetails.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/settings/src/components/appDetails.vue b/settings/src/components/appDetails.vue index 5452715c0ea..2a51f3a841b 100644 --- a/settings/src/components/appDetails.vue +++ b/settings/src/components/appDetails.vue @@ -131,8 +131,9 @@ export default { return `https://apps.nextcloud.com/apps/${this.app.id}`; }, licence() { - if (this.app.licence) - return ('' + this.app.licence).toUpperCase() + t('settings', '-licensed'); + if (this.app.licence) { + return t('settings', '{license}-licensed', { license: ('' + this.app.licence).toUpperCase() } ); + } return null; }, hasRating() { |