mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 06:43:35 +00:00
[PM-1176] Hovering over the Learn More about auto-fill link in the … (#5300)
* [PM-1176] Hovering over the `Learn More about auto-fill` link in the browser extension does not change the cursor * [PM-1176] Modifying how the anchor element is formatted by prettier * [PM-1176] Adding translation methodology to the aria-label "opens in a new window" value
This commit is contained in:
@@ -2202,5 +2202,8 @@
|
|||||||
"example": "CTRL+Shift+L"
|
"example": "CTRL+Shift+L"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"opensInANewWindow": {
|
||||||
|
"message": "Opens in a new window"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,17 @@
|
|||||||
{{ "enableAutoFillOnPageLoadDesc" | i18n }}
|
{{ "enableAutoFillOnPageLoadDesc" | i18n }}
|
||||||
<b>{{ "warning" | i18n }}</b
|
<b>{{ "warning" | i18n }}</b
|
||||||
>: {{ "experimentalFeature" | i18n }}
|
>: {{ "experimentalFeature" | i18n }}
|
||||||
<a (click)="AboutAutofill()">{{ "learnMoreAboutAutofill" | i18n }}</a>
|
<a
|
||||||
|
href="https://bitwarden.com/help/auto-fill-browser/"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
{{ "learnMoreAboutAutofill" | i18n }}.
|
||||||
|
<i
|
||||||
|
[attr.aria-label]="'opensInANewWindow' | i18n"
|
||||||
|
class="bwi bwi-external-link bwi-sm bwi-fw"
|
||||||
|
></i>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|||||||
@@ -63,10 +63,6 @@ export class AutofillComponent implements OnInit {
|
|||||||
await this.stateService.setDefaultUriMatch(this.defaultUriMatch);
|
await this.stateService.setDefaultUriMatch(this.defaultUriMatch);
|
||||||
}
|
}
|
||||||
|
|
||||||
AboutAutofill() {
|
|
||||||
BrowserApi.createNewTab("https://bitwarden.com/help/auto-fill-browser/");
|
|
||||||
}
|
|
||||||
|
|
||||||
private async setAutofillKeyboardHelperText(command: string) {
|
private async setAutofillKeyboardHelperText(command: string) {
|
||||||
if (command) {
|
if (command) {
|
||||||
this.autofillKeyboardHelperText = this.i18nService.t("autofillShortcutText", command);
|
this.autofillKeyboardHelperText = this.i18nService.t("autofillShortcutText", command);
|
||||||
|
|||||||
Reference in New Issue
Block a user