Remove unnecessary translation in systemtags

Signed-off-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
Gary Kim 2020-03-21 12:44:30 +08:00 committed by Roeland Jago Douma
parent 47fafead81
commit cac851bdbf
No known key found for this signature in database
GPG Key ID: F941078878347C0C
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')
}
if (scope) {
var $tag = $('<em>').text(' '
+ t('core', '({scope})', {
scope: scope
})
)
$span.append($tag)
$span.append($('<em>').text(' (' + scope + ')'))
}
return $span
}