Browse Source

Remove unnecessary translation in systemtags

Signed-off-by: Gary Kim <gary@garykim.dev>
tags/v19.0.0beta1
Gary Kim 4 years ago
parent
commit
cac851bdbf
No account linked to committer's email address
3 changed files with 3 additions and 8 deletions
  1. 1
    1
      core/js/dist/systemtags.js
  2. 1
    1
      core/js/dist/systemtags.js.map
  3. 1
    6
      core/js/systemtags/systemtags.js

+ 1
- 1
core/js/dist/systemtags.js
File diff suppressed because it is too large
View File


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


+ 1
- 6
core/js/systemtags/systemtags.js 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
}

Loading…
Cancel
Save