1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[PM-26325] Archive string - separate noun and verb (#16652)

* Separation of noun and verb
This commit is contained in:
Konrad
2025-10-01 21:36:02 +02:00
committed by GitHub
parent 8cb908ef68
commit 420b26776b
7 changed files with 25 additions and 10 deletions

View File

@@ -424,7 +424,7 @@ export class VaultFilterComponent implements OnInit, OnDestroy {
[
{
id: "archive",
name: this.i18nService.t("archive"),
name: this.i18nService.t("archiveNoun"),
type: "archive",
icon: "bwi-archive",
},

View File

@@ -140,7 +140,7 @@ export class VaultHeaderComponent {
}
if (this.filter.type === "archive") {
return this.i18nService.t("archive");
return this.i18nService.t("archiveNoun");
}
const activeOrganization = this.activeOrganization;

View File

@@ -11078,8 +11078,13 @@
"searchArchive": {
"message": "Search archive"
},
"archive": {
"message": "Archive"
"archiveNoun": {
"message": "Archive",
"description": "Noun"
},
"archiveVerb": {
"message": "Archive",
"description": "Verb"
},
"noItemsInArchive": {
"message": "No items in archive"