Skip to content

Commit 086ce18

Browse files
committed
list: do not announce "use the navigation keys to navigat" message to make things more concise
fixes microsoft#97510
1 parent 5628416 commit 086ce18

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/vs/base/browser/ui/list/listWidget.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import 'vs/css!./list';
7-
import { localize } from 'vs/nls';
87
import { IDisposable, dispose, DisposableStore } from 'vs/base/common/lifecycle';
98
import { isNumber } from 'vs/base/common/types';
109
import { range, firstIndex, binarySearch } from 'vs/base/common/arrays';
@@ -1380,7 +1379,7 @@ export class List<T> implements ISpliceable<T>, IDisposable {
13801379

13811380
set ariaLabel(value: string) {
13821381
this._ariaLabel = value;
1383-
this.view.domNode.setAttribute('aria-label', localize('aria list', "{0}. Use the navigation keys to navigate.", value));
1382+
this.view.domNode.setAttribute('aria-label', value);
13841383
}
13851384

13861385
domFocus(): void {

0 commit comments

Comments
 (0)