mirror of
https://github.com/bitwarden/browser
synced 2026-01-31 00:33:33 +00:00
[EC-16] More i18n cleanup
This commit is contained in:
@@ -253,7 +253,11 @@ export class GroupsComponent implements OnInit, OnDestroy {
|
||||
this.organizationId,
|
||||
new OrganizationUserBulkRequest(groupsToDelete.map((g) => g.id))
|
||||
);
|
||||
this.platformUtilsService.showToast("success", null, `Delete ${result.data.length} groups!`);
|
||||
this.platformUtilsService.showToast(
|
||||
"success",
|
||||
null,
|
||||
this.i18nService.t("deletedManyGroups", result.data.length.toString())
|
||||
);
|
||||
|
||||
groupsToDelete.forEach((g) => this.removeGroup(g.id));
|
||||
} catch (e) {
|
||||
|
||||
@@ -2680,6 +2680,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"deletedManyGroups": {
|
||||
"message": "Deleted $QUANTITY$ group(s).",
|
||||
"placeholders": {
|
||||
"quantity": {
|
||||
"content": "$1",
|
||||
"example": "3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedUserId": {
|
||||
"message": "Removed user $ID$.",
|
||||
"placeholders": {
|
||||
|
||||
Reference in New Issue
Block a user