Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ui/src/i18n/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default {
'delegate.adminHelp': 'With the administration security level on this resource, the receivers of this delegation can create other delegations to share this access with other valid receivers',
'delegate.writeHelp': 'With the write security level, the receivers of this delegation can modify the members of the involved groups. Without this access, this delegation grants read-only rights',
'delegate.adminGranted': 'Administration granted',
'delegate.adminNotGranted': 'Administration not granted',
'delegate.writeGranted': 'Write access granted',
'delegate.writeNotGranted': 'Write access not granted',
// Fragments wrapping the receiver name in bold red on the delete
// confirmation (issue #37). The host keeps the monolithic
// `delegate.deleteConfirm` key intact.
Expand Down
2 changes: 2 additions & 0 deletions ui/src/i18n/fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export default {
'delegate.adminHelp': 'Avec le niveau de sécurité d\'administration sur cette ressource, les receveurs de cette délégation peuvent créer d\'autres délégations pour partager cet accès avec d\'autres receveurs valides',
'delegate.writeHelp': 'Avec le niveau de sécurité d\'écriture, les receveurs de cette délégation peuvent modifier les membres des groupes impliqués. Sans cet accès cette délégation ne donne qu\'un droit de lecture',
'delegate.adminGranted': 'Administration accordée',
'delegate.adminNotGranted': 'Administration non accordée',
'delegate.writeGranted': 'Écriture accordée',
'delegate.writeNotGranted': 'Écriture non accordée',
// Fragments encadrant le nom du destinataire en gras-rouge dans la
// confirmation de suppression (issue #37). Le host garde la clé
// monolithique `delegate.deleteConfirm` intacte.
Expand Down
8 changes: 6 additions & 2 deletions ui/src/views/DelegateListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,14 @@
</span>
</template>
<template #cell.canAdmin="{ item }">
<span class="bdot" :class="{ on: item.canAdmin }" :title="item.canAdmin ? t('delegate.adminGranted') : ''" />
<span class="bdot" :class="{ on: item.canAdmin }">
<v-tooltip activator="parent" :text="item.canAdmin ? t('delegate.adminGranted') : t('delegate.adminNotGranted')" location="top" />
</span>
</template>
<template #cell.canWrite="{ item }">
<span class="bdot" :class="{ on: item.canWrite }" :title="item.canWrite ? t('delegate.writeGranted') : ''" />
<span class="bdot" :class="{ on: item.canWrite }">
<v-tooltip activator="parent" :text="item.canWrite ? t('delegate.writeGranted') : t('delegate.writeNotGranted')" location="top" />
</span>
</template>
<template #actions="{ item }">
<v-menu location="bottom end">
Expand Down
Loading