mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
[PM-9951] Assignment Collections copy (part 2) (#10244)
* add back disc bullet for assignment collections * add singular and plural versions of bulk collection assignment description
This commit is contained in:
@@ -3764,7 +3764,10 @@
|
|||||||
"assign": {
|
"assign": {
|
||||||
"message": "Assign"
|
"message": "Assign"
|
||||||
},
|
},
|
||||||
"bulkCollectionAssignmentDialogDescription": {
|
"bulkCollectionAssignmentDialogDescriptionSingular": {
|
||||||
|
"message": "Only organization members with access to these collections will be able to see the item."
|
||||||
|
},
|
||||||
|
"bulkCollectionAssignmentDialogDescriptionPlural": {
|
||||||
"message": "Only organization members with access to these collections will be able to see the items."
|
"message": "Only organization members with access to these collections will be able to see the items."
|
||||||
},
|
},
|
||||||
"bulkCollectionAssignmentWarning": {
|
"bulkCollectionAssignmentWarning": {
|
||||||
|
|||||||
@@ -7933,7 +7933,10 @@
|
|||||||
"assignToTheseCollections": {
|
"assignToTheseCollections": {
|
||||||
"message": "Assign to these collections"
|
"message": "Assign to these collections"
|
||||||
},
|
},
|
||||||
"bulkCollectionAssignmentDialogDescription": {
|
"bulkCollectionAssignmentDialogDescriptionSingular": {
|
||||||
|
"message": "Only organization members with access to these collections will be able to see the item."
|
||||||
|
},
|
||||||
|
"bulkCollectionAssignmentDialogDescriptionPlural": {
|
||||||
"message": "Only organization members with access to these collections will be able to see the items."
|
"message": "Only organization members with access to these collections will be able to see the items."
|
||||||
},
|
},
|
||||||
"selectCollectionsToAssign": {
|
"selectCollectionsToAssign": {
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
<form [formGroup]="formGroup" [bitSubmit]="submit" id="assign_collections_form">
|
<form [formGroup]="formGroup" [bitSubmit]="submit" id="assign_collections_form">
|
||||||
<p>{{ "bulkCollectionAssignmentDialogDescription" | i18n }}</p>
|
<p>
|
||||||
|
{{
|
||||||
|
(personalItemsCount === 1
|
||||||
|
? "bulkCollectionAssignmentDialogDescriptionSingular"
|
||||||
|
: "bulkCollectionAssignmentDialogDescriptionPlural"
|
||||||
|
) | i18n
|
||||||
|
}}
|
||||||
|
</p>
|
||||||
|
|
||||||
<ul class="tw-list-none tw-pl-5 tw-space-y-2 tw-break-words">
|
<ul class="tw-list-disc tw-pl-5 tw-space-y-2 tw-break-words">
|
||||||
<li *ngIf="readonlyItemCount > 0">
|
<li *ngIf="readonlyItemCount > 0">
|
||||||
<p>
|
<p>
|
||||||
{{ "bulkCollectionAssignmentWarning" | i18n: totalItemCount : readonlyItemCount }}
|
{{ "bulkCollectionAssignmentWarning" | i18n: totalItemCount : readonlyItemCount }}
|
||||||
|
|||||||
Reference in New Issue
Block a user