diff --git a/.i18nrc.json b/.i18nrc.json index 4dd1ec490bd061..bc557db8fdf148 100644 --- a/.i18nrc.json +++ b/.i18nrc.json @@ -17,7 +17,7 @@ "visTypeMarkdown": "src/legacy/core_plugins/vis_type_markdown", "metricVis": "src/legacy/core_plugins/metric_vis", "visTypeVega": "src/legacy/core_plugins/vis_type_vega", - "tableVis": "src/legacy/core_plugins/table_vis", + "visTypeTable": "src/legacy/core_plugins/vis_type_table", "regionMap": "src/legacy/core_plugins/region_map", "statusPage": "src/legacy/core_plugins/status_page", "tileMap": "src/legacy/core_plugins/tile_map", diff --git a/src/legacy/core_plugins/table_vis/index.ts b/src/legacy/core_plugins/vis_type_table/index.ts similarity index 100% rename from src/legacy/core_plugins/table_vis/index.ts rename to src/legacy/core_plugins/vis_type_table/index.ts diff --git a/src/legacy/core_plugins/table_vis/package.json b/src/legacy/core_plugins/vis_type_table/package.json similarity index 100% rename from src/legacy/core_plugins/table_vis/package.json rename to src/legacy/core_plugins/vis_type_table/package.json diff --git a/src/legacy/core_plugins/table_vis/public/__snapshots__/table_vis_fn.test.js.snap b/src/legacy/core_plugins/vis_type_table/public/__snapshots__/table_vis_fn.test.js.snap similarity index 100% rename from src/legacy/core_plugins/table_vis/public/__snapshots__/table_vis_fn.test.js.snap rename to src/legacy/core_plugins/vis_type_table/public/__snapshots__/table_vis_fn.test.js.snap diff --git a/src/legacy/core_plugins/table_vis/public/__tests__/table_vis_controller.js b/src/legacy/core_plugins/vis_type_table/public/__tests__/table_vis_controller.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/__tests__/table_vis_controller.js rename to src/legacy/core_plugins/vis_type_table/public/__tests__/table_vis_controller.js diff --git a/src/legacy/core_plugins/table_vis/public/_table_vis.scss b/src/legacy/core_plugins/vis_type_table/public/_table_vis.scss similarity index 100% rename from src/legacy/core_plugins/table_vis/public/_table_vis.scss rename to src/legacy/core_plugins/vis_type_table/public/_table_vis.scss diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/__tests__/agg_table.js b/src/legacy/core_plugins/vis_type_table/public/agg_table/__tests__/agg_table.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/agg_table/__tests__/agg_table.js rename to src/legacy/core_plugins/vis_type_table/public/agg_table/__tests__/agg_table.js diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/__tests__/agg_table_group.js b/src/legacy/core_plugins/vis_type_table/public/agg_table/__tests__/agg_table_group.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/agg_table/__tests__/agg_table_group.js rename to src/legacy/core_plugins/vis_type_table/public/agg_table/__tests__/agg_table_group.js diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/_agg_table.scss b/src/legacy/core_plugins/vis_type_table/public/agg_table/_agg_table.scss similarity index 100% rename from src/legacy/core_plugins/table_vis/public/agg_table/_agg_table.scss rename to src/legacy/core_plugins/vis_type_table/public/agg_table/_agg_table.scss diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/_index.scss b/src/legacy/core_plugins/vis_type_table/public/agg_table/_index.scss similarity index 100% rename from src/legacy/core_plugins/table_vis/public/agg_table/_index.scss rename to src/legacy/core_plugins/vis_type_table/public/agg_table/_index.scss diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/agg_table.html b/src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table.html similarity index 84% rename from src/legacy/core_plugins/table_vis/public/agg_table/agg_table.html rename to src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table.html index f9ca505e6ec016..5107bd20482867 100644 --- a/src/legacy/core_plugins/table_vis/public/agg_table/agg_table.html +++ b/src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table.html @@ -12,19 +12,19 @@
       diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/agg_table.js b/src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table.js similarity index 99% rename from src/legacy/core_plugins/table_vis/public/agg_table/agg_table.js rename to src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table.js index fa5ee90df3b325..06cca15f885568 100644 --- a/src/legacy/core_plugins/table_vis/public/agg_table/agg_table.js +++ b/src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table.js @@ -240,7 +240,7 @@ function addPercentageCol(columns, title, rows, insertAtIndex) { const { id, sumTotal } = columns[insertAtIndex]; const newId = `${id}-percents`; const formatter = getFormat({ id: 'percent' }); - const i18nTitle = i18n.translate('tableVis.params.percentageTableColumnName', { + const i18nTitle = i18n.translate('visTypeTable.params.percentageTableColumnName', { defaultMessage: '{title} percentages', values: { title }, }); diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/agg_table_group.html b/src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table_group.html similarity index 100% rename from src/legacy/core_plugins/table_vis/public/agg_table/agg_table_group.html rename to src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table_group.html diff --git a/src/legacy/core_plugins/table_vis/public/agg_table/agg_table_group.js b/src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table_group.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/agg_table/agg_table_group.js rename to src/legacy/core_plugins/vis_type_table/public/agg_table/agg_table_group.js diff --git a/src/legacy/core_plugins/table_vis/public/index.scss b/src/legacy/core_plugins/vis_type_table/public/index.scss similarity index 100% rename from src/legacy/core_plugins/table_vis/public/index.scss rename to src/legacy/core_plugins/vis_type_table/public/index.scss diff --git a/src/legacy/core_plugins/table_vis/public/index.ts b/src/legacy/core_plugins/vis_type_table/public/index.ts similarity index 100% rename from src/legacy/core_plugins/table_vis/public/index.ts rename to src/legacy/core_plugins/vis_type_table/public/index.ts diff --git a/src/legacy/core_plugins/table_vis/public/legacy.ts b/src/legacy/core_plugins/vis_type_table/public/legacy.ts similarity index 100% rename from src/legacy/core_plugins/table_vis/public/legacy.ts rename to src/legacy/core_plugins/vis_type_table/public/legacy.ts diff --git a/src/legacy/core_plugins/table_vis/public/paginated_table/__tests__/paginated_table.js b/src/legacy/core_plugins/vis_type_table/public/paginated_table/__tests__/paginated_table.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/paginated_table/__tests__/paginated_table.js rename to src/legacy/core_plugins/vis_type_table/public/paginated_table/__tests__/paginated_table.js diff --git a/src/legacy/core_plugins/table_vis/public/paginated_table/_index.scss b/src/legacy/core_plugins/vis_type_table/public/paginated_table/_index.scss similarity index 100% rename from src/legacy/core_plugins/table_vis/public/paginated_table/_index.scss rename to src/legacy/core_plugins/vis_type_table/public/paginated_table/_index.scss diff --git a/src/legacy/core_plugins/table_vis/public/paginated_table/_table_cell_filter.scss b/src/legacy/core_plugins/vis_type_table/public/paginated_table/_table_cell_filter.scss similarity index 100% rename from src/legacy/core_plugins/table_vis/public/paginated_table/_table_cell_filter.scss rename to src/legacy/core_plugins/vis_type_table/public/paginated_table/_table_cell_filter.scss diff --git a/src/legacy/core_plugins/table_vis/public/paginated_table/paginated_table.html b/src/legacy/core_plugins/vis_type_table/public/paginated_table/paginated_table.html similarity index 100% rename from src/legacy/core_plugins/table_vis/public/paginated_table/paginated_table.html rename to src/legacy/core_plugins/vis_type_table/public/paginated_table/paginated_table.html diff --git a/src/legacy/core_plugins/table_vis/public/paginated_table/paginated_table.js b/src/legacy/core_plugins/vis_type_table/public/paginated_table/paginated_table.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/paginated_table/paginated_table.js rename to src/legacy/core_plugins/vis_type_table/public/paginated_table/paginated_table.js diff --git a/src/legacy/core_plugins/table_vis/public/paginated_table/rows.js b/src/legacy/core_plugins/vis_type_table/public/paginated_table/rows.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/paginated_table/rows.js rename to src/legacy/core_plugins/vis_type_table/public/paginated_table/rows.js diff --git a/src/legacy/core_plugins/table_vis/public/paginated_table/table_cell_filter.html b/src/legacy/core_plugins/vis_type_table/public/paginated_table/table_cell_filter.html similarity index 63% rename from src/legacy/core_plugins/table_vis/public/paginated_table/table_cell_filter.html rename to src/legacy/core_plugins/vis_type_table/public/paginated_table/table_cell_filter.html index 026538296ae112..57ecb9b221611f 100644 --- a/src/legacy/core_plugins/table_vis/public/paginated_table/table_cell_filter.html +++ b/src/legacy/core_plugins/vis_type_table/public/paginated_table/table_cell_filter.html @@ -8,14 +8,14 @@ data-test-subj="filterForCellValue" ng-click="onFilterClick($event, false)" class="fa fa-search-plus" - tooltip="{{ ::'tableVis.directives.tableCellFilter.filterForValueTooltip' | i18n: {defaultMessage: 'Filter for value'} }}" + tooltip="{{ ::'visTypeTable.directives.tableCellFilter.filterForValueTooltip' | i18n: {defaultMessage: 'Filter for value'} }}" tooltip-append-to-body="1" > diff --git a/src/legacy/core_plugins/table_vis/public/plugin.ts b/src/legacy/core_plugins/vis_type_table/public/plugin.ts similarity index 100% rename from src/legacy/core_plugins/table_vis/public/plugin.ts rename to src/legacy/core_plugins/vis_type_table/public/plugin.ts diff --git a/src/legacy/core_plugins/table_vis/public/shim/index.ts b/src/legacy/core_plugins/vis_type_table/public/shim/index.ts similarity index 100% rename from src/legacy/core_plugins/table_vis/public/shim/index.ts rename to src/legacy/core_plugins/vis_type_table/public/shim/index.ts diff --git a/src/legacy/core_plugins/table_vis/public/shim/legacy_dependencies_plugin.ts b/src/legacy/core_plugins/vis_type_table/public/shim/legacy_dependencies_plugin.ts similarity index 100% rename from src/legacy/core_plugins/table_vis/public/shim/legacy_dependencies_plugin.ts rename to src/legacy/core_plugins/vis_type_table/public/shim/legacy_dependencies_plugin.ts diff --git a/src/legacy/core_plugins/table_vis/public/shim/table_vis_legacy_module.ts b/src/legacy/core_plugins/vis_type_table/public/shim/table_vis_legacy_module.ts similarity index 100% rename from src/legacy/core_plugins/table_vis/public/shim/table_vis_legacy_module.ts rename to src/legacy/core_plugins/vis_type_table/public/shim/table_vis_legacy_module.ts diff --git a/src/legacy/core_plugins/table_vis/public/table_vis.html b/src/legacy/core_plugins/vis_type_table/public/table_vis.html similarity index 94% rename from src/legacy/core_plugins/table_vis/public/table_vis.html rename to src/legacy/core_plugins/vis_type_table/public/table_vis.html index eefc89920d9ea9..f721b670400d66 100644 --- a/src/legacy/core_plugins/table_vis/public/table_vis.html +++ b/src/legacy/core_plugins/vis_type_table/public/table_vis.html @@ -7,7 +7,7 @@

diff --git a/src/legacy/core_plugins/table_vis/public/table_vis_controller.js b/src/legacy/core_plugins/vis_type_table/public/table_vis_controller.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/table_vis_controller.js rename to src/legacy/core_plugins/vis_type_table/public/table_vis_controller.js diff --git a/src/legacy/core_plugins/table_vis/public/table_vis_fn.js b/src/legacy/core_plugins/vis_type_table/public/table_vis_fn.js similarity index 96% rename from src/legacy/core_plugins/table_vis/public/table_vis_fn.js rename to src/legacy/core_plugins/vis_type_table/public/table_vis_fn.js index 0a5bbc9d6e37f8..315cb3e22e8b0e 100644 --- a/src/legacy/core_plugins/table_vis/public/table_vis_fn.js +++ b/src/legacy/core_plugins/vis_type_table/public/table_vis_fn.js @@ -28,7 +28,7 @@ export const createTableVisFn = (dependencies) => ({ 'kibana_datatable' ], }, - help: i18n.translate('tableVis.function.help', { + help: i18n.translate('visTypeTable.function.help', { defaultMessage: 'Table visualization' }), args: { diff --git a/src/legacy/core_plugins/table_vis/public/table_vis_fn.test.js b/src/legacy/core_plugins/vis_type_table/public/table_vis_fn.test.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/table_vis_fn.test.js rename to src/legacy/core_plugins/vis_type_table/public/table_vis_fn.test.js diff --git a/src/legacy/core_plugins/table_vis/public/table_vis_params.html b/src/legacy/core_plugins/vis_type_table/public/table_vis_params.html similarity index 87% rename from src/legacy/core_plugins/table_vis/public/table_vis_params.html rename to src/legacy/core_plugins/vis_type_table/public/table_vis_params.html index ca903d3bc317b6..272aebecebe314 100644 --- a/src/legacy/core_plugins/table_vis/public/table_vis_params.html +++ b/src/legacy/core_plugins/vis_type_table/public/table_vis_params.html @@ -1,7 +1,7 @@
@@ -9,7 +9,7 @@
@@ -25,7 +25,7 @@
@@ -42,12 +42,12 @@
@@ -66,7 +66,7 @@
@@ -82,7 +82,7 @@
@@ -99,7 +99,7 @@
diff --git a/src/legacy/core_plugins/table_vis/public/table_vis_params.js b/src/legacy/core_plugins/vis_type_table/public/table_vis_params.js similarity index 97% rename from src/legacy/core_plugins/table_vis/public/table_vis_params.js rename to src/legacy/core_plugins/vis_type_table/public/table_vis_params.js index 993e6e2321cbf7..6749eec31a1398 100644 --- a/src/legacy/core_plugins/table_vis/public/table_vis_params.js +++ b/src/legacy/core_plugins/vis_type_table/public/table_vis_params.js @@ -29,7 +29,7 @@ export function TableVisParams() { link: function ($scope) { const noCol = { value: '', - name: i18n.translate('tableVis.params.defaultPercetangeCol', { + name: i18n.translate('visTypeTable.params.defaultPercetangeCol', { defaultMessage: 'Don’t show', }) }; diff --git a/src/legacy/core_plugins/table_vis/public/table_vis_request_handler.js b/src/legacy/core_plugins/vis_type_table/public/table_vis_request_handler.js similarity index 100% rename from src/legacy/core_plugins/table_vis/public/table_vis_request_handler.js rename to src/legacy/core_plugins/vis_type_table/public/table_vis_request_handler.js diff --git a/src/legacy/core_plugins/table_vis/public/table_vis_type.js b/src/legacy/core_plugins/vis_type_table/public/table_vis_type.js similarity index 87% rename from src/legacy/core_plugins/table_vis/public/table_vis_type.js rename to src/legacy/core_plugins/vis_type_table/public/table_vis_type.js index 03c3835645bad1..4853241fcf776b 100644 --- a/src/legacy/core_plugins/table_vis/public/table_vis_type.js +++ b/src/legacy/core_plugins/vis_type_table/public/table_vis_type.js @@ -29,11 +29,11 @@ export const createTableVisTypeDefinition = (dependencies) => { return dependencies.createAngularVisualization({ type: 'table', name: 'table', - title: i18n.translate('tableVis.tableVisTitle', { + title: i18n.translate('visTypeTable.tableVisTitle', { defaultMessage: 'Data Table', }), icon: 'visTable', - description: i18n.translate('tableVis.tableVisDescription', { + description: i18n.translate('visTypeTable.tableVisDescription', { defaultMessage: 'Display values in a table', }), visConfig: { @@ -57,7 +57,7 @@ export const createTableVisTypeDefinition = (dependencies) => { { group: 'metrics', name: 'metric', - title: i18n.translate('tableVis.tableVisEditorConfig.schemas.metricTitle', { + title: i18n.translate('visTypeTable.tableVisEditorConfig.schemas.metricTitle', { defaultMessage: 'Metric', }), aggFilter: ['!geo_centroid', '!geo_bounds'], @@ -74,7 +74,7 @@ export const createTableVisTypeDefinition = (dependencies) => { { group: 'buckets', name: 'bucket', - title: i18n.translate('tableVis.tableVisEditorConfig.schemas.bucketTitle', { + title: i18n.translate('visTypeTable.tableVisEditorConfig.schemas.bucketTitle', { defaultMessage: 'Split rows', }), aggFilter: ['!filter'] @@ -82,7 +82,7 @@ export const createTableVisTypeDefinition = (dependencies) => { { group: 'buckets', name: 'split', - title: i18n.translate('tableVis.tableVisEditorConfig.schemas.splitTitle', { + title: i18n.translate('visTypeTable.tableVisEditorConfig.schemas.splitTitle', { defaultMessage: 'Split table', }), min: 0, diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index e3c922315c17a2..9bec228974d853 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -2777,24 +2777,24 @@ "statusPage.statusApp.statusTitle": "プラグインステータス", "statusPage.statusTable.columns.idHeader": "ID", "statusPage.statusTable.columns.statusHeader": "ステータス", - "tableVis.aggTable.exportLabel": "エクスポート:", - "tableVis.aggTable.formattedLabel": "フォーマット済み", - "tableVis.aggTable.rawLabel": "生", - "tableVis.directives.tableCellFilter.filterForValueTooltip": "値でフィルターします", - "tableVis.directives.tableCellFilter.filterOutValueTooltip": "値を除外します", - "tableVis.function.help": "表ビジュアライゼーション", - "tableVis.params.perPageLabel": "1 ページあたり", - "tableVis.params.showMetricsLabel": "すべてのバケット/レベルのメトリックを表示", - "tableVis.params.showPartialRowsLabel": "部分的な行を表示", - "tableVis.params.showPartialRowsTip": "部分データのある行を表示。表示されていなくてもすべてのバケット/レベルのメトリックが計算されます。", - "tableVis.params.showTotalLabel": "合計を表示", - "tableVis.params.totalFunctionLabel": "合計機能", - "tableVis.tableVisDescription": "テーブルに値を表示します。", - "tableVis.tableVisEditorConfig.schemas.bucketTitle": "行を分割", - "tableVis.tableVisEditorConfig.schemas.metricTitle": "メトリック", - "tableVis.tableVisEditorConfig.schemas.splitTitle": "テーブルを分割", - "tableVis.tableVisTitle": "データテーブル", - "tableVis.vis.noResultsFoundTitle": "結果が見つかりませんでした", + "visTypeTable.aggTable.exportLabel": "エクスポート:", + "visTypeTable.aggTable.formattedLabel": "フォーマット済み", + "visTypeTable.aggTable.rawLabel": "生", + "visTypeTable.directives.tableCellFilter.filterForValueTooltip": "値でフィルターします", + "visTypeTable.directives.tableCellFilter.filterOutValueTooltip": "値を除外します", + "visTypeTable.function.help": "表ビジュアライゼーション", + "visTypeTable.params.perPageLabel": "1 ページあたり", + "visTypeTable.params.showMetricsLabel": "すべてのバケット/レベルのメトリックを表示", + "visTypeTable.params.showPartialRowsLabel": "部分的な行を表示", + "visTypeTable.params.showPartialRowsTip": "部分データのある行を表示。表示されていなくてもすべてのバケット/レベルのメトリックが計算されます。", + "visTypeTable.params.showTotalLabel": "合計を表示", + "visTypeTable.params.totalFunctionLabel": "合計機能", + "visTypeTable.tableVisDescription": "テーブルに値を表示します。", + "visTypeTable.tableVisEditorConfig.schemas.bucketTitle": "行を分割", + "visTypeTable.tableVisEditorConfig.schemas.metricTitle": "メトリック", + "visTypeTable.tableVisEditorConfig.schemas.splitTitle": "テーブルを分割", + "visTypeTable.tableVisTitle": "データテーブル", + "visTypeTable.vis.noResultsFoundTitle": "結果が見つかりませんでした", "tagCloud.feedbackMessage.tooSmallContainerDescription": "コンテナーが小さすぎてクラウド全体を表示できません。タグが切り取られたか省略されている可能性があります。", "tagCloud.feedbackMessage.truncatedTagsDescription": "描写時間が長くなるのを防ぐため、タグの数が切り捨てられています。", "tagCloud.function.bucket.help": "バケットディメンションの構成です。", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index f9c05601507603..9ff99675f67800 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -2778,24 +2778,24 @@ "statusPage.statusApp.statusTitle": "插件状态", "statusPage.statusTable.columns.idHeader": "ID", "statusPage.statusTable.columns.statusHeader": "状态", - "tableVis.aggTable.exportLabel": "导出:", - "tableVis.aggTable.formattedLabel": "格式化", - "tableVis.aggTable.rawLabel": "原始", - "tableVis.directives.tableCellFilter.filterForValueTooltip": "筛留值", - "tableVis.directives.tableCellFilter.filterOutValueTooltip": "筛除值", - "tableVis.function.help": "表可视化", - "tableVis.params.perPageLabel": "每页", - "tableVis.params.showMetricsLabel": "显示每个桶/级别的指标", - "tableVis.params.showPartialRowsLabel": "显示部分行", - "tableVis.params.showPartialRowsTip": "显示具有部分数据的行这仍将计算每个桶/级别的指标,即使它们未显示。", - "tableVis.params.showTotalLabel": "显示汇总", - "tableVis.params.totalFunctionLabel": "汇总函数", - "tableVis.tableVisDescription": "在表中显示值", - "tableVis.tableVisEditorConfig.schemas.bucketTitle": "拆分行", - "tableVis.tableVisEditorConfig.schemas.metricTitle": "指标", - "tableVis.tableVisEditorConfig.schemas.splitTitle": "拆分表", - "tableVis.tableVisTitle": "数据表", - "tableVis.vis.noResultsFoundTitle": "找不到结果", + "visTypeTable.aggTable.exportLabel": "导出:", + "visTypeTable.aggTable.formattedLabel": "格式化", + "visTypeTable.aggTable.rawLabel": "原始", + "visTypeTable.directives.tableCellFilter.filterForValueTooltip": "筛留值", + "visTypeTable.directives.tableCellFilter.filterOutValueTooltip": "筛除值", + "visTypeTable.function.help": "表可视化", + "visTypeTable.params.perPageLabel": "每页", + "visTypeTable.params.showMetricsLabel": "显示每个桶/级别的指标", + "visTypeTable.params.showPartialRowsLabel": "显示部分行", + "visTypeTable.params.showPartialRowsTip": "显示具有部分数据的行这仍将计算每个桶/级别的指标,即使它们未显示。", + "visTypeTable.params.showTotalLabel": "显示汇总", + "visTypeTable.params.totalFunctionLabel": "汇总函数", + "visTypeTable.tableVisDescription": "在表中显示值", + "visTypeTable.tableVisEditorConfig.schemas.bucketTitle": "拆分行", + "visTypeTable.tableVisEditorConfig.schemas.metricTitle": "指标", + "visTypeTable.tableVisEditorConfig.schemas.splitTitle": "拆分表", + "visTypeTable.tableVisTitle": "数据表", + "visTypeTable.vis.noResultsFoundTitle": "找不到结果", "tagCloud.feedbackMessage.tooSmallContainerDescription": "容器太小,无法显示整个云。标记可能被裁剪或省略。", "tagCloud.feedbackMessage.truncatedTagsDescription": "标记数量已截断,以避免绘制时间过长。", "tagCloud.function.bucket.help": "存储桶维度配置",