You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ t('systemtags', 'Select or create tags to apply to all selected files') }}
92
+
{{ canEditOrCreateTag ? t('systemtags', 'Select or create tags to apply to all selected files'): t('systemtags', 'Select tags to apply to all selected files') }}
92
93
</NcNoteCard>
93
94
<NcNoteCardv-elsetype="info">
94
95
<spanv-html="statusMessage" />
@@ -127,7 +128,9 @@ import type { Tag, TagWithId } from '../types'
127
128
128
129
import { defineComponent } from'vue'
129
130
import { emit } from'@nextcloud/event-bus'
131
+
import { getCurrentUser } from'@nextcloud/auth'
130
132
import { getLanguage, n, t } from'@nextcloud/l10n'
Copy file name to clipboardExpand all lines: apps/systemtags/src/components/SystemTagsCreationControl.vue
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,17 @@
6
6
<template>
7
7
<divid="system-tags-creation-control">
8
8
<h4class="inlineblock">
9
-
{{ t('settings', 'System tag creation') }}
9
+
{{ t('settings', 'System tag management') }}
10
10
</h4>
11
11
12
12
<pclass="settings-hint">
13
-
{{ t('settings', 'If enabled, regular accounts will be restricted from creating new tags but will still be able to assign and remove them from their files.') }}
13
+
{{ t('settings', 'If enabled, only administrators can create and edit tags. Accounts can still assign and remove them from files.') }}
0 commit comments