aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/src/systemtags/systemtags.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/systemtags/systemtags.js b/core/src/systemtags/systemtags.js
index bbb2ecac1d8..90b415d1557 100644
--- a/core/src/systemtags/systemtags.js
+++ b/core/src/systemtags/systemtags.js
@@ -56,11 +56,11 @@ import escapeHTML from 'escape-html'
var scope
if (!tag.userAssignable) {
- scope = t('core', 'restricted')
+ scope = t('core', 'Restricted')
}
if (!tag.userVisible) {
// invisible also implicitly means not assignable
- scope = t('core', 'invisible')
+ scope = t('core', 'Invisible')
}
if (scope) {
var $scope = document.createElement('em')