提交 e27dba1d 编写于 作者: I isidor

lint: fix duplicate nls keys

上级 5b4cbd16
......@@ -100,7 +100,7 @@ class InstallAction extends Action {
});
}
})
.then(() => this.messageService.show(Severity.Info, nls.localize('success', "Shell command '{0}' successfully installed in PATH.", this.applicationName)));
.then(() => this.messageService.show(Severity.Info, nls.localize('successIn', "Shell command '{0}' successfully installed in PATH.", this.applicationName)));
});
}
......@@ -181,7 +181,7 @@ class UninstallAction extends Action {
run(): TPromise<void> {
return pfs.unlink(this.target)
.then(null, ignore('ENOENT'))
.then(() => this.messageService.show(Severity.Info, nls.localize('success', "Shell command '{0}' successfully uninstalled from PATH.", this.applicationName)));
.then(() => this.messageService.show(Severity.Info, nls.localize('successFrom', "Shell command '{0}' successfully uninstalled from PATH.", this.applicationName)));
}
}
......
......@@ -305,13 +305,13 @@ export class DebugEditorModelManager implements IWorkbenchContribution {
private static BREAKPOINT_UNVERIFIED_DECORATION: editorcommon.IModelDecorationOptions = {
glyphMarginClassName: 'debug-breakpoint-unverified-glyph',
hoverMessage: nls.localize('breakpointDisabledHover', "Unverified Breakpoint"),
hoverMessage: nls.localize('breakpointUnverifieddHover', "Unverified Breakpoint"),
stickiness: editorcommon.TrackedRangeStickiness.NeverGrowsWhenTypingAtEdges
};
private static BREAKPOINT_DIRTY_DECORATION: editorcommon.IModelDecorationOptions = {
glyphMarginClassName: 'debug-breakpoint-unverified-glyph',
hoverMessage: nls.localize('breakpointDisabledHover', "Unverified breakpoint. File is modified, please restart debug session."),
hoverMessage: nls.localize('breakpointDirtydHover', "Unverified breakpoint. File is modified, please restart debug session."),
stickiness: editorcommon.TrackedRangeStickiness.NeverGrowsWhenTypingAtEdges
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册