Check-in current XLF files (#2275)

* Check-in current XLF files

* Remove duplicate IDs from SQL.XLF file

* Add comment why line is being disabled
This commit is contained in:
Karl Burtram
2018-08-21 16:57:22 -04:00
committed by GitHub
parent 6e8a0fe0ef
commit 08d57fed86
10 changed files with 3336 additions and 8 deletions

View File

@@ -69,7 +69,7 @@ ExtensionsRegistry.registerExtensionPoint<IDashboardContainerContrib | IDashboar
return;
}
if (Object.keys(container).length !== 1) {
extension.collector.error(localize('dashboardTab.contribution.moreThanOneDashboardContainersError', 'Exactly 1 dashboard container must be defined per space.'));
extension.collector.error(localize('dashboardContainer.contribution.moreThanOneDashboardContainersError', 'Exactly 1 dashboard container must be defined per space.'));
return;
}

View File

@@ -24,7 +24,7 @@ const properties: IJSONSchema = {
},
yAxisLabel: {
type: 'string',
description: nls.localize('yAxisLabel', "Label for the y axis")
description: nls.localize('barchart.yAxisLabel', "Label for the y axis")
},
xAxisMin: {
type: 'number',
@@ -36,7 +36,7 @@ const properties: IJSONSchema = {
},
xAxisLabel: {
type: 'string',
description: nls.localize('xAxisLabel', "Label for the x axis")
description: nls.localize('barchart.xAxisLabel', "Label for the x axis")
}
}
};