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