mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
Changing the text for creating a new access token from "add access token" to "create access token" (#15078)
This commit is contained in:
@@ -7702,8 +7702,8 @@
|
||||
"message": "Access tokens",
|
||||
"description": "Title for the section displaying access tokens."
|
||||
},
|
||||
"newAccessToken": {
|
||||
"message": "New access token",
|
||||
"createAccessToken": {
|
||||
"message": "Create access token",
|
||||
"description": "Button label for creating a new access token."
|
||||
},
|
||||
"expires": {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
(click)="newAccessTokenEvent.emit()"
|
||||
>
|
||||
<i class="bwi bwi-plus" aria-hidden="true"></i>
|
||||
{{ "newAccessToken" | i18n }}
|
||||
{{ "createAccessToken" | i18n }}
|
||||
</button>
|
||||
</bit-no-items>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<form [formGroup]="formGroup" [bitSubmit]="submit">
|
||||
<bit-dialog dialogSize="default">
|
||||
<ng-container bitDialogTitle>
|
||||
<span>{{ "newAccessToken" | i18n }}</span>
|
||||
<span>{{ "createAccessToken" | i18n }}</span>
|
||||
<span class="tw-text-sm tw-normal-case tw-text-muted">
|
||||
{{ data.serviceAccountView.name }}
|
||||
</span>
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
<ng-container bitDialogFooter>
|
||||
<button class="tw-normal-case" type="submit" bitButton buttonType="primary" bitFormButton>
|
||||
{{ "newAccessToken" | i18n }}
|
||||
{{ "createAccessToken" | i18n }}
|
||||
</button>
|
||||
<button type="button" bitButton buttonType="secondary" bitFormButton bitDialogClose>
|
||||
{{ "cancel" | i18n }}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<bit-dialog dialogSize="default" [title]="'newAccessToken' | i18n" [subtitle]="data.subTitle">
|
||||
<bit-dialog dialogSize="default" [title]="'createAccessToken' | i18n" [subtitle]="data.subTitle">
|
||||
<div bitDialogContent>
|
||||
<bit-callout type="info" [title]="'accessTokenCallOutTitle' | i18n">
|
||||
{{ "downloadAccessToken" | i18n }}<br />
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
(click)="openNewAccessTokenDialog()"
|
||||
>
|
||||
<i class="bwi bwi-plus" aria-hidden="true"></i>
|
||||
{{ "newAccessToken" | i18n }}
|
||||
{{ "createAccessToken" | i18n }}
|
||||
</button>
|
||||
</app-header>
|
||||
<router-outlet></router-outlet>
|
||||
|
||||
Reference in New Issue
Block a user