1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

[SM-839] remove enable from copy (#5721)

* remove enable from copy

* revert af changes; update en locale to remove enable copy
This commit is contained in:
Will Martin
2023-07-06 18:51:40 -04:00
committed by GitHub
parent a004453034
commit 69945adba2
5 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
<bit-dialog dialogSize="large">
<span bitDialogTitle>{{ "enableSecretsManager" | i18n }}</span>
<span bitDialogTitle>{{ "activateSecretsManager" | i18n }}</span>
<span bitDialogContent>
<p>{{ "bulkEnableSecretsManagerDescription" | i18n }}</p>
<bit-table [dataSource]="dataSource">
@@ -37,7 +37,7 @@
</span>
<ng-container bitDialogFooter>
<button type="button" bitButton buttonType="primary" [bitAction]="submit">
{{ "enableAccess" | i18n }}
{{ "activateAccess" | i18n }}
</button>
<button type="button" bitButton buttonType="secondary" bitDialogClose>
{{ "close" | i18n }}

View File

@@ -39,7 +39,7 @@ export class BulkEnableSecretsManagerDialogComponent implements OnInit {
this.platformUtilsService.showToast(
"success",
null,
this.i18nService.t("enabledAccessToSecretsManager")
this.i18nService.t("activatedAccessToSecretsManager")
);
this.dialogRef.close();
};

View File

@@ -265,7 +265,7 @@
<i class="bwi bwi-question-circle" aria-hidden="true"></i>
</a>
</h3>
<p class="tw-text-muted">{{ "secretsManagerAccessDesc" | i18n }}</p>
<p class="tw-text-muted">{{ "secretsManagerAccessDescription" | i18n }}</p>
<bit-form-control>
<input type="checkbox" bitCheckbox formControlName="accessSecretsManager" />
<bit-label>

View File

@@ -101,7 +101,7 @@
<bit-menu #headerMenu>
<ng-container *ngIf="canUseSecretsManager$ | async">
<button type="button" bitMenuItem (click)="bulkEnableSM()">
{{ "enableSecretsManager" | i18n }}
{{ "activateSecretsManager" | i18n }}
</button>
<bit-menu-divider></bit-menu-divider>
</ng-container>