Skip to content

Commit e21807d

Browse files
committed
one more revert
1 parent 1aa7cbd commit e21807d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/editor/contrib/gotoSymbol/browser/referencesModel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ export class FileReferences implements IDisposable {
119119
get ariaMessage(): string {
120120
const len = this.children.length;
121121
if (len === 1) {
122-
return localize('aria.fileReferences.1', "1 in {0}, full path {1}", basename(this.uri), this.uri.fsPath);
122+
return localize('aria.fileReferences.1', "1 symbol in {0}, full path {1}", basename(this.uri), this.uri.fsPath);
123123
} else {
124-
return localize('aria.fileReferences.N', "{0} in {1}, full path {2}", len, basename(this.uri), this.uri.fsPath);
124+
return localize('aria.fileReferences.N', "{0} symbols in {1}, full path {2}", len, basename(this.uri), this.uri.fsPath);
125125
}
126126
}
127127

0 commit comments

Comments
 (0)