This commit is contained in:
SteVen Batten 2021-07-02 13:16:36 -07:00
parent f21b5dc1eb
commit 3718ef0556

View file

@ -142,10 +142,10 @@ class WorkspaceTrustedUrisTable extends Disposable {
} else {
const hostLabel = getHostLabel(this.labelService, item);
if (hostLabel === undefined || hostLabel.length === 0) {
return localize('trustedFolderAriaLabel', "You trust {0}", this.labelService.getUriLabel(item.uri));
return localize('trustedFolderAriaLabel', "{0}, trusted", this.labelService.getUriLabel(item.uri));
}
return localize('trustedFolderWithHostAriaLabel', "You trust {0} on {1}", this.labelService.getUriLabel(item.uri), hostLabel);
return localize('trustedFolderWithHostAriaLabel', "{0} on {1}, trusted", this.labelService.getUriLabel(item.uri), hostLabel);
}