Skip to content

Commit

Permalink
fix #11932: add missing localization for disassembly-view title (#11939)
Browse files Browse the repository at this point in the history
Signed-off-by: Leon Arndt <neotalon27@gmail.com>

Signed-off-by: Leon Arndt <neotalon27@gmail.com>
  • Loading branch information
leon-arndt authored Dec 2, 2022
1 parent e1f52db commit 8f5e457
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class DisassemblyViewWidget extends BaseWidget {
this.id = DisassemblyViewWidget.ID;
this.addClass(DisassemblyViewWidget.ID);
this.title.closable = true;
this.title.label = 'Disassembly';
this.title.label = nls.localize('theia/debug/disassembly-view/disassembly', 'Disassembly');
const updateIcon = () => this.title.iconClass = this.labelProvider.getIcon(this.iconReferenceUri) + ' file-icon';
updateIcon();
this.toDispose.push(this.labelProvider.onDidChange(updateIcon));
Expand Down Expand Up @@ -461,4 +461,3 @@ export class DisassemblyViewWidget extends BaseWidget {
return disposable;
}
}

0 comments on commit 8f5e457

Please sign in to comment.