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

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

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