1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-27 06:43:41 +00:00

remove and revert excess string translations

This commit is contained in:
jng
2026-01-26 17:23:54 -05:00
parent b20b04c19c
commit 6d69abcf19
2 changed files with 2 additions and 8 deletions

View File

@@ -44,7 +44,7 @@
@if (hasFooterAction) {
<div class="right">
@if (showArchiveButton) {
<button type="button" (click)="archive()" [appA11yTitle]="archiveTooltip">
<button type="button" (click)="archive()" appA11yTitle="{{ 'archiveVerb' | i18n }}">
<i
class="bwi bwi-archive bwi-lg bwi-fw"
aria-hidden="true"
@@ -54,7 +54,7 @@
}
@if (showUnarchiveButton) {
<button type="button" (click)="unarchive()" [appA11yTitle]="unarchiveTooltip">
<button type="button" (click)="unarchive()" appA11yTitle="{{ 'unArchive' | i18n }}">
<i
class="bwi bwi-unarchive bwi-lg bwi-fw"
aria-hidden="true"

View File

@@ -73,12 +73,6 @@ export class ItemFooterComponent implements OnInit, OnChanges {
activeUserId: UserId | null = null;
passwordReprompted: boolean = false;
protected readonly editTooltip = this.i18nService.t("edit");
protected readonly cloneTooltip = this.i18nService.t("clone");
protected readonly restoreTooltip = this.i18nService.t("restore");
protected readonly archiveTooltip = this.i18nService.t("archiveVerb");
protected readonly unarchiveTooltip = this.i18nService.t("unArchive");
protected showArchiveButton = false;
protected showUnarchiveButton = false;
protected userCanArchive = false;