1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02:00

[SM-626] Change create access token to new access token (#4992)

This commit is contained in:
Oscar Hinton 2023-03-17 18:33:57 +01:00 committed by GitHub
parent c67fc1ff82
commit c2edc0fd0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View File

@ -6037,8 +6037,8 @@
"message": "Access tokens",
"description": "Title for the section displaying access tokens."
},
"createAccessToken": {
"message": "Create access token",
"newAccessToken": {
"message": "New access token",
"description": "Button label for creating a new access token."
},
"expires": {

View File

@ -13,7 +13,7 @@
(click)="newAccessTokenEvent.emit()"
>
<i class="bwi bwi-plus" aria-hidden="true"></i>
{{ "createAccessToken" | i18n }}
{{ "newAccessToken" | i18n }}
</button>
</sm-no-items>

View File

@ -1,7 +1,7 @@
<form [formGroup]="formGroup" [bitSubmit]="submit">
<bit-dialog dialogSize="default">
<ng-container bitDialogTitle>
<span>{{ "createAccessToken" | i18n }}</span>
<span>{{ "newAccessToken" | i18n }}</span>
<span class="tw-text-sm tw-normal-case tw-text-muted">
{{ data.serviceAccountView.name }}
</span>
@ -34,7 +34,7 @@
<div bitDialogFooter class="tw-flex tw-gap-2">
<button class="tw-normal-case" type="submit" bitButton buttonType="primary" bitFormButton>
{{ "createAccessToken" | i18n }}
{{ "newAccessToken" | i18n }}
</button>
<button type="button" bitButton buttonType="secondary" bitFormButton bitDialogClose>
{{ "cancel" | i18n }}

View File

@ -1,6 +1,6 @@
<bit-dialog dialogSize="default">
<ng-container bitDialogTitle>
<span>{{ "createAccessToken" | i18n }}</span>
<span>{{ "newAccessToken" | i18n }}</span>
<span class="tw-text-sm tw-normal-case tw-text-muted">
{{ data.subTitle }}
</span>

View File

@ -22,7 +22,7 @@
(click)="openNewAccessTokenDialog()"
>
<i class="bwi bwi-plus" aria-hidden="true"></i>
{{ "createAccessToken" | i18n }}
{{ "newAccessToken" | i18n }}
</button>
</sm-header>
<router-outlet></router-outlet>