提交 47ac64a0 编写于 作者: M Matt Bierner

Make sure status bar name for zoom/size can be localized

上级 b3da545c
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
import * as vscode from 'vscode'; import * as vscode from 'vscode';
import { Disposable } from './dispose'; import { Disposable } from './dispose';
import * as nls from 'vscode-nls';
const localize = nls.loadMessageBundle();
export class SizeStatusBarEntry extends Disposable { export class SizeStatusBarEntry extends Disposable {
private readonly _entry: vscode.StatusBarItem; private readonly _entry: vscode.StatusBarItem;
...@@ -13,7 +16,7 @@ export class SizeStatusBarEntry extends Disposable { ...@@ -13,7 +16,7 @@ export class SizeStatusBarEntry extends Disposable {
super(); super();
this._entry = this._register(vscode.window.createStatusBarItem({ this._entry = this._register(vscode.window.createStatusBarItem({
id: 'imagePreview.size', id: 'imagePreview.size',
name: 'Image Size', name: localize('sizeStatusBar.name', "Image Size"),
alignment: vscode.StatusBarAlignment.Right, alignment: vscode.StatusBarAlignment.Right,
priority: 101 /* to the left of editor status (100) */, priority: 101 /* to the left of editor status (100) */,
})); }));
...@@ -30,4 +33,4 @@ export class SizeStatusBarEntry extends Disposable { ...@@ -30,4 +33,4 @@ export class SizeStatusBarEntry extends Disposable {
public update(text: string) { public update(text: string) {
this._entry.text = text; this._entry.text = text;
} }
} }
\ No newline at end of file
...@@ -23,7 +23,7 @@ export class ZoomStatusBarEntry extends Disposable { ...@@ -23,7 +23,7 @@ export class ZoomStatusBarEntry extends Disposable {
super(); super();
this._entry = this._register(vscode.window.createStatusBarItem({ this._entry = this._register(vscode.window.createStatusBarItem({
id: 'imagePreview.zoom', id: 'imagePreview.zoom',
name: 'Image Zoom', name: localize('zoomStatusBar.name', "Image Zoom"),
alignment: vscode.StatusBarAlignment.Right, alignment: vscode.StatusBarAlignment.Right,
priority: 102 /* to the left of editor size entry (101) */, priority: 102 /* to the left of editor size entry (101) */,
})); }));
...@@ -65,4 +65,4 @@ export class ZoomStatusBarEntry extends Disposable { ...@@ -65,4 +65,4 @@ export class ZoomStatusBarEntry extends Disposable {
? localize('zoomStatusBar.wholeImageLabel', "Whole Image") ? localize('zoomStatusBar.wholeImageLabel', "Whole Image")
: `${Math.round(scale * 100)}%`; : `${Math.round(scale * 100)}%`;
} }
} }
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册