Skip to content

Commit

Permalink
fixes #127620 (#127904)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten authored Jul 2, 2021
1 parent 99653c6 commit 9056b40
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);


}
Expand Down

0 comments on commit 9056b40

Please sign in to comment.