Browse Source

Remove unnecessary translation in systemtags

Signed-off-by: Gary Kim <gary@garykim.dev>
pull/20075/head
Gary Kim 6 years ago
committed by Roeland Jago Douma
parent
commit
cac851bdbf
No known key found for this signature in database GPG Key ID: F941078878347C0C
  1. 2
      core/js/dist/systemtags.js
  2. 2
      core/js/dist/systemtags.js.map
  3. 7
      core/js/systemtags/systemtags.js

2
core/js/dist/systemtags.js
File diff suppressed because it is too large
View File

2
core/js/dist/systemtags.js.map
File diff suppressed because it is too large
View File

7
core/js/systemtags/systemtags.js

@ -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
}

Loading…
Cancel
Save