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:
@@ -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",
|
||||
},
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user