localized the unlocalized strings (#2018)

This commit is contained in:
Aditya Bist
2018-07-24 16:49:06 -07:00
committed by GitHub
parent 6783766c33
commit ed9c74b900

View File

@@ -40,12 +40,12 @@ interface WatermarkEntry {
// {{SQL CARBON EDIT}} // {{SQL CARBON EDIT}}
const showServers: WatermarkEntry = { const showServers: WatermarkEntry = {
text: 'Show Servers', text: nls.localize('watermark.showServers', 'Show Servers'),
ids: [OpenConnectionsViewletAction.ID] ids: [OpenConnectionsViewletAction.ID]
}; };
const newSqlFile: WatermarkEntry = { const newSqlFile: WatermarkEntry = {
text: 'New SQL File', text: nls.localize('watermark.newSqlFile', 'New SQL File'),
ids: [GlobalNewUntitledFileAction.ID] ids: [GlobalNewUntitledFileAction.ID]
}; };