Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 3 additions & 0 deletions apps/web/src/locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -13868,6 +13868,9 @@
"memberAccessReportPageDescV2": {
"message": "Audit member access across groups, collections, and collection items. The CSV export provides a detailed breakdown per member, including information on collection permissions and account configurations."
},
"memberAccessReportPageDescV3": {
"message": "Audit member access across groups, shared folders, and items. The CSV export provides a detailed breakdown per member, including information on permissions and account configurations."
},
Comment thread
JaredScar marked this conversation as resolved.
Outdated
"memberAccessReportNoCollection": {
"message": "(No Collection)"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<div class="tw-max-w-4xl">
<p bitTypography="body1">
{{ "memberAccessReportPageDesc" | vfo1I18n: "memberAccessReportPageDescV2" }}
{{ "memberAccessReportPageDesc" | vfo1I18n: "memberAccessReportPageDescV3" }}
</p>
</div>

Expand All @@ -40,7 +40,7 @@ <h2 bitTypography="h1">{{ "loading" | i18n }}</h2>
<th bitCell bitSortable="email" default>{{ "members" | i18n }}</th>
<th bitCell bitSortable="groupsCount" class="tw-w-[278px]">{{ "groups" | i18n }}</th>
<th bitCell bitSortable="collectionsCount" class="tw-w-[278px]">
{{ "collections" | i18n }}
{{ "collections" | vfo1I18n: "sharedFolders" }}
</th>
<th bitCell bitSortable="itemsCount" class="tw-w-[278px]">{{ "items" | i18n }}</th>
</ng-container>
Expand Down
Loading