Skip to content

Commit 95b3a0a

Browse files
committed
1 parent 4a316b0 commit 95b3a0a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/vs/workbench/contrib/notebook/browser/view/renderers/commonViewComponents.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6+
import { localize } from 'vs/nls';
67
import * as DOM from 'vs/base/browser/dom';
78
import { MenuEntryActionViewItem } from 'vs/platform/actions/browser/menuEntryActionViewItem';
89
import { MenuItemAction } from 'vs/platform/actions/common/actions';
@@ -73,5 +74,6 @@ export class CellLanguageStatusBarItem extends Disposable {
7374
private render(): void {
7475
const modeId = this.cell?.cellKind === CellKind.Markdown ? 'markdown' : this.modeService.getModeIdForLanguageName(this.cell!.language) || this.cell!.language;
7576
this.labelElement.textContent = this.modeService.getLanguageName(modeId) || this.modeService.getLanguageName('plaintext');
77+
this.labelElement.title = localize('notebook.cell.status.language', "Select Cell Language Mode");
7678
}
7779
}

0 commit comments

Comments
 (0)