This commit is contained in:
Sandeep Somavarapu 2024-06-17 12:51:47 +02:00 committed by GitHub
parent 88d860624c
commit 934307f5be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -557,7 +557,7 @@ class ProfileWidget extends Disposable {
this.copyFromSelectBox.render(append(this.copyFromContainer, $('.profile-select-container')));
this.useAsDefaultProfileContainer = append(body, $('.profile-use-as-default-container'));
const useAsDefaultProfileTitle = localize('enable for new windows', "Use this profile for new windows");
const useAsDefaultProfileTitle = localize('enable for new windows', "Use this profile as default for new windows");
this.useAsDefaultProfileCheckbox = this._register(new Checkbox(useAsDefaultProfileTitle, false, defaultCheckboxStyles));
append(this.useAsDefaultProfileContainer, this.useAsDefaultProfileCheckbox.domNode);
const useAsDefaultProfileLabel = append(this.useAsDefaultProfileContainer, $('.profile-use-as-default-label', undefined, useAsDefaultProfileTitle));