Skip to content

Commit 1aa7cbd

Browse files
committed
revert change
1 parent 5e5896e commit 1aa7cbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,11 @@ export class ReferencesModel implements IDisposable {
208208
if (this.isEmpty) {
209209
return localize('aria.result.0', "No results found");
210210
} else if (this.references.length === 1) {
211-
return localize('aria.result.1', "Found 1 in {0}", this.references[0].uri.fsPath);
211+
return localize('aria.result.1', "Found 1 symbol in {0}", this.references[0].uri.fsPath);
212212
} else if (this.groups.length === 1) {
213-
return localize('aria.result.n1', "Found {0} in {1}", this.references.length, this.groups[0].uri.fsPath);
213+
return localize('aria.result.n1', "Found {0} symbols in {1}", this.references.length, this.groups[0].uri.fsPath);
214214
} else {
215-
return localize('aria.result.nm', "Found {0} in {1} files", this.references.length, this.groups.length);
215+
return localize('aria.result.nm', "Found {0} symbols in {1} files", this.references.length, this.groups.length);
216216
}
217217
}
218218

0 commit comments

Comments
 (0)