Merge pull request #20075 from nextcloud/fix/20059/remove-unnecessary-translation

Remove unnecessary translation in systemtags
This commit is contained in:
John Molakvoæ 2020-03-22 18:45:43 +01:00 committed by GitHub
commit ea6601a2fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -44,12 +44,7 @@
scope = t('core', 'invisible') scope = t('core', 'invisible')
} }
if (scope) { if (scope) {
var $tag = $('<em>').text(' ' $span.append($('<em>').text(' (' + scope + ')'))
+ t('core', '({scope})', {
scope: scope
})
)
$span.append($tag)
} }
return $span return $span
} }