mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 12:13:39 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
19 lines
609 B
HTML
19 lines
609 B
HTML
<bit-simple-dialog>
|
|
<span bitDialogTitle>
|
|
{{ "verifyNativeMessagingConnectionTitle" | i18n: data.applicationName }}:
|
|
</span>
|
|
<span bitDialogContent>
|
|
{{ "verifyNativeMessagingConnectionDesc" | i18n }}
|
|
<br />
|
|
{{ "verifyNativeMessagingConnectionWarning" | i18n }}
|
|
</span>
|
|
<ng-container bitDialogFooter>
|
|
<button bitButton type="button" buttonType="primary" [bitDialogClose]="true">
|
|
{{ "yes" | i18n }}
|
|
</button>
|
|
<button bitButton type="button" buttonType="secondary" [bitDialogClose]="false">
|
|
{{ "no" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-simple-dialog>
|